Skip to content

Commit e28e503

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 1971f42 commit e28e503

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

python/eigenpy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
# More resources on https://github.com/diffpy/pyobjcryst/issues/33
1515
try:
1616
from .eigenpy_pywrap import * # noqa
17-
from .eigenpy_pywrap import __raw_version__, __version__ # noqa
17+
from .eigenpy_pywrap import __raw_version__, __version__
1818
except ImportError:
1919
import platform
2020

2121
if platform.system() == "Windows":
22-
from .windows_dll_manager import get_dll_paths, build_directory_manager
22+
from .windows_dll_manager import build_directory_manager, get_dll_paths
2323

2424
with build_directory_manager() as dll_dir_manager:
2525
for p in get_dll_paths():

python/eigenpy/windows_dll_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import contextlib
12
import os
23
import sys
3-
import contextlib
44

55

66
def get_dll_paths():

0 commit comments

Comments
 (0)