Skip to content

Commit 2dfb813

Browse files
committed
lint: Delete unused "type: ignore" comment
1 parent ecb8e9a commit 2dfb813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/test/test_color_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
def test(expect_color: bool, *args: Any, **kwargs: Any) -> None:
11-
res = run(*args, capture_output=True, **kwargs) # type:ignore[call-overload]
11+
res = run(*args, capture_output=True, **kwargs)
1212
if "Found" not in res.stdout: # ??
1313
pytest.fail("Command failed to complete or did not detect type error")
1414
if expect_color: # Expect color control chars

0 commit comments

Comments
 (0)