Skip to content

Commit 274c9a5

Browse files
Thomas M FishDavid Miguel Susano Pinto
authored andcommitted
microscope.utils.library_loader: fix Python version check (fixup 03e6b5c)
1 parent c2b3dc5 commit 274c9a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

microscope/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def library_loader(
6767
# restores the use of the standard search path. See issue #235.
6868
if (
6969
os.name == "nt"
70-
and sys.version_info >= (3.8)
70+
and sys.version_info >= (3, 8)
7171
and "winmode" not in kwargs
7272
):
7373
winmode_kwargs = {"winmode": 0}

0 commit comments

Comments
 (0)