Skip to content

Commit be44027

Browse files
authored
Merge pull request #67 from diffCheckOrg/DamienGilliard-patch-1
FIX: solving imoport issue for diffcheck_bindings
2 parents 8ba24c1 + 087c531 commit be44027

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/gh/diffCheck/diffCheck/__init__.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33

44
__version__ = "0.0.24"
55

6+
# make the dlls available to the python interpreter
67
PATH_TO_DLL = "dlls"
78
extra_dll_dir = os.path.join(os.path.dirname(__file__), PATH_TO_DLL)
8-
os.add_dll_directory(extra_dll_dir)
9+
os.add_dll_directory(extra_dll_dir)
10+
11+
# import the bindings
12+
from . import diffcheck_bindings

0 commit comments

Comments
 (0)