fix(types): T1 — remove 15 stale type: ignore comments confirmed unused by mypy

This commit is contained in:
2026-05-01 01:26:24 -04:00
parent 8033137be6
commit ed6263a53d
10 changed files with 13 additions and 13 deletions

View File

@@ -169,10 +169,10 @@ class CanaryDNSProtocol(asyncio.DatagramProtocol):
self._answer_ip = answer_ip
self._transport: Optional[asyncio.DatagramTransport] = None
def connection_made(self, transport) -> None: # type: ignore[override]
self._transport = transport # type: ignore[assignment]
def connection_made(self, transport) -> None:
self._transport = transport
def datagram_received( # type: ignore[override]
def datagram_received(
self, data: bytes, addr: Tuple[str, int],
) -> None:
try: