Skip to content
Snippets Groups Projects
Commit e28e503f authored by pre-commit-ci[bot]'s avatar pre-commit-ci[bot]
Browse files

[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
parent 1971f42a
No related branches found
No related tags found
No related merge requests found
...@@ -14,12 +14,12 @@ ...@@ -14,12 +14,12 @@
# More resources on https://github.com/diffpy/pyobjcryst/issues/33 # More resources on https://github.com/diffpy/pyobjcryst/issues/33
try: try:
from .eigenpy_pywrap import * # noqa from .eigenpy_pywrap import * # noqa
from .eigenpy_pywrap import __raw_version__, __version__ # noqa from .eigenpy_pywrap import __raw_version__, __version__
except ImportError: except ImportError:
import platform import platform
if platform.system() == "Windows": if platform.system() == "Windows":
from .windows_dll_manager import get_dll_paths, build_directory_manager from .windows_dll_manager import build_directory_manager, get_dll_paths
with build_directory_manager() as dll_dir_manager: with build_directory_manager() as dll_dir_manager:
for p in get_dll_paths(): for p in get_dll_paths():
......
import contextlib
import os import os
import sys import sys
import contextlib
def get_dll_paths(): def get_dll_paths():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment