Skip to content

Commit

Permalink
Reformatted
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlegiantJGC committed Aug 6, 2024
1 parent 469f0bd commit 30fb3f8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion amulet_map_editor/__pyinstaller/hook-numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
(dll_path, "numpy.libs")
for dll_path in glob.glob(os.path.join(glob.escape(numpy_lib_path), "*.dll"))
] + [
(pyd_path, os.path.relpath(os.path.dirname(pyd_path), os.path.dirname(numpy_path)))
(
pyd_path,
os.path.relpath(os.path.dirname(pyd_path), os.path.dirname(numpy_path)),
)
for pyd_path in glob.glob(
os.path.join(glob.escape(numpy.__path__[0]), "**", "*.pyd"), recursive=True
)
Expand Down

0 comments on commit 30fb3f8

Please sign in to comment.