We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8ba24c1 + 087c531 commit be44027Copy full SHA for be44027
src/gh/diffCheck/diffCheck/__init__.py
@@ -3,6 +3,10 @@
3
4
__version__ = "0.0.24"
5
6
+# make the dlls available to the python interpreter
7
PATH_TO_DLL = "dlls"
8
extra_dll_dir = os.path.join(os.path.dirname(__file__), PATH_TO_DLL)
-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