We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69819e3 commit 5861521Copy full SHA for 5861521
src/trio/_tests/test_util.py
@@ -269,7 +269,7 @@ def test_fixup_module_metadata() -> None:
269
assert mod.SomeClass.method.__module__ == "trio.somemodule" # type: ignore[attr-defined]
270
assert mod.SomeClass.method.__qualname__ == "SomeClass.method" # type: ignore[attr-defined]
271
# 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]
+ non_trio_module.some_func()
+ mod.some_func()
+ mod._private()
275
mod.SomeClass().method()
0 commit comments