FIXUP: Fix a lint

This commit is contained in:
Alex Pyrgiotis 2024-10-08 13:33:53 +03:00
parent 30b4f24d77
commit 6fd0f925a8
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -4,7 +4,7 @@ import sys
try: try:
from . import vendor # type: ignore [attr-defined] from . import vendor # type: ignore [attr-defined]
vendor_path = vendor.__path__[0] vendor_path = vendor.__path__[0]
print(f"Using vendored PyMuPDF libraries from '{vendor_path}'") print(f"Using vendored PyMuPDF libraries from '{vendor_path}'")
sys.path.insert(0, vendor_path) sys.path.insert(0, vendor_path)
except ImportError: except ImportError: