Skip to content

Commit

Permalink
Merge pull request diffCheckOrg#67 from diffCheckOrg/DamienGilliard-p…
Browse files Browse the repository at this point in the history
…atch-1

FIX: solving imoport issue for diffcheck_bindings
  • Loading branch information
9and3 authored Aug 22, 2024
2 parents 8ba24c1 + 087c531 commit be44027
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/gh/diffCheck/diffCheck/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

__version__ = "0.0.24"

# make the dlls available to the python interpreter
PATH_TO_DLL = "dlls"
extra_dll_dir = os.path.join(os.path.dirname(__file__), PATH_TO_DLL)
os.add_dll_directory(extra_dll_dir)
os.add_dll_directory(extra_dll_dir)

# import the bindings
from . import diffcheck_bindings

0 comments on commit be44027

Please sign in to comment.