Skip to content

Commit

Permalink
Remove unneeded misspelled pylint suppression
Browse files Browse the repository at this point in the history
  • Loading branch information
rrthomas committed Dec 27, 2024
1 parent d3b7ef9 commit f5216bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def passing_test(
) -> None:
ctx_mgr: Union[ContextManager[None], TemporaryDirectory[str]]
if output_dir is None:
ctx_mgr = tempfile.TemporaryDirectory() # pylint ignore=consider-using-with
ctx_mgr = tempfile.TemporaryDirectory()
output_obj = os.path.join(ctx_mgr.name, "output")
else:
ctx_mgr = contextlib.nullcontext()
Expand Down

0 comments on commit f5216bf

Please sign in to comment.