Skip to content

Commit b261350

Browse files
nim65sjcarpent
authored andcommitted
fix unittest syntax
1 parent 845c42b commit b261350

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

python/eigenpy/windows_dll_manager.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import contextlib
22
import os
3-
import sys
43

54

65
def get_dll_paths():
@@ -59,7 +58,4 @@ def __exit__(self, *exc_details):
5958

6059

6160
def build_directory_manager():
62-
if sys.version_info >= (3, 8):
63-
return DllDirectoryManager()
64-
else:
65-
return PathManager()
61+
return DllDirectoryManager()

0 commit comments

Comments
 (0)