Skip to content

Commit

Permalink
Missed another type quote
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolCat467 committed Jan 13, 2025
1 parent a2d83f5 commit 335dab2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ class MemoryListener(
trio.StapledStream[trio.testing.MemorySendStream, trio.testing.MemoryReceiveStream]
],
] = attr.ib(factory=lambda: trio.open_memory_channel[
trio.StapledStream[trio.testing.MemorySendStream, trio.testing.MemoryReceiveStream]
"trio.StapledStream[trio.testing.MemorySendStream, trio.testing.MemoryReceiveStream]"
](1))
accept_hook: Callable[[], Awaitable[object]] | None = attr.ib(default=None)

Expand Down
2 changes: 1 addition & 1 deletion trio_websocket/_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,7 @@ def listeners(self) -> list[Endpoint | str]:
listeners.append(repr(listener))
return listeners

async def run(
async def run( # type: ignore[misc]
self,
*,
task_status: trio.TaskStatus[WebSocketServer] = trio.TASK_STATUS_IGNORED,
Expand Down

0 comments on commit 335dab2

Please sign in to comment.