Skip to content

Commit 2a141bc

Browse files
committed
No need to turn off coverage as we are actually testing code in question
1 parent e13e779 commit 2a141bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wcmatch/pathlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __new__(cls, *args, **kwargs):
7878

7979
if cls is Path:
8080
cls = WindowsPath if os.name == 'nt' else PosixPath
81-
if util.PY310: # pragma: no cover
81+
if util.PY310:
8282
self = cls._from_parts(args)
8383
else:
8484
self = cls._from_parts(args, init=False)

0 commit comments

Comments
 (0)