Skip to content

Commit

Permalink
🚨 Fix ruff lints
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatXliner committed Dec 17, 2023
1 parent 07394d2 commit 7873280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aioudp/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def datagram_received(self, data: bytes, addr: connection.AddrType) -> None:
self.msg_queues[addr] = asyncio.Queue()
assert self.transport is not None

def done(_):
def done(_) -> None: # noqa: ANN001
self.msg_queues.pop(addr, None)
self.msg_queues.pop(addr, None)

Expand Down

0 comments on commit 7873280

Please sign in to comment.