We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3608277 commit c450271Copy full SHA for c450271
2 files changed
domdf_python_tools/paths.py
@@ -982,9 +982,9 @@ def cleanup(self) -> None:
982
983
context: ContextManager
984
985
- if sys.platform == "win32":
+ if sys.platform == "win32": # pragma: no cover (!Windows)
986
context = contextlib.suppress(PermissionError, NotADirectoryError)
987
- else:
+ else: # pragma: no cover (Windows)
988
context = nullcontext()
989
990
with context:
0 commit comments