Skip to content

Commit 0f9779e

Browse files
committed
Remove unused type: ignore comment
1 parent cc5feb5 commit 0f9779e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

domdf_python_tools/paths.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def __new__(cls, *args, **kwargs): # noqa D102
376376
if cls is PathPlus:
377377
cls = WindowsPathPlus if os.name == "nt" else PosixPathPlus
378378

379-
self = cls._from_parts(args, init=False) # type: ignore
379+
self = cls._from_parts(args, init=False)
380380
if not self._flavour.is_supported:
381381
raise NotImplementedError(f"cannot instantiate {cls.__name__!r} on your system")
382382

0 commit comments

Comments
 (0)