Skip to content

Commit 5861521

Browse files
committed
Remove now unused type ignores
1 parent 69819e3 commit 5861521

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/trio/_tests/test_util.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def test_fixup_module_metadata() -> None:
269269
assert mod.SomeClass.method.__module__ == "trio.somemodule" # type: ignore[attr-defined]
270270
assert mod.SomeClass.method.__qualname__ == "SomeClass.method" # type: ignore[attr-defined]
271271
# Make coverage happy.
272-
non_trio_module.some_func() # type: ignore[no-untyped-call]
273-
mod.some_func() # type: ignore[no-untyped-call]
274-
mod._private() # type: ignore[no-untyped-call]
272+
non_trio_module.some_func()
273+
mod.some_func()
274+
mod._private()
275275
mod.SomeClass().method()

0 commit comments

Comments
 (0)