Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
anakin87 committed Nov 28, 2024
1 parent bfebfd6 commit 9189cf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/utils/check_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
import sys
import importlib
import traceback
from haystack import logging # this is needed to avoid circular imports
from haystack import logging # pylint: disable=unused-import # this is needed to avoid circular imports

"""
This script checks that all Haystack packages can be imported successfully.
This can detect several issues.
One example is forgetting to use a forward reference for a type hint coming
from a lazy import.
"""
""" # pylint: disable=pointless-string-statement

def validate_package_imports(directory):
"""
Expand Down

0 comments on commit 9189cf9

Please sign in to comment.