Skip to content

Commit

Permalink
Fix import for FFI module 🌟
Browse files Browse the repository at this point in the history
- Updated import statement in `liknorm/__init__.py` to use `_cffi` instead of `_ffi`.
- This resolves potential issues resulting from broken installation errors.
  • Loading branch information
horta committed Jan 6, 2025
1 parent ef36d22 commit bbf7df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liknorm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from ._testit import test

try:
from ._ffi import lib
from ._cffi import lib
except Exception as e:
_ffi_err = """
It is likely caused by a broken installation of this package.
Expand Down

0 comments on commit bbf7df3

Please sign in to comment.