Skip to content

Commit

Permalink
No need to turn off coverage as we are actually testing code in question
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed May 11, 2021
1 parent e13e779 commit 2a141bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wcmatch/pathlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __new__(cls, *args, **kwargs):

if cls is Path:
cls = WindowsPath if os.name == 'nt' else PosixPath
if util.PY310: # pragma: no cover
if util.PY310:
self = cls._from_parts(args)
else:
self = cls._from_parts(args, init=False)
Expand Down

0 comments on commit 2a141bc

Please sign in to comment.