Skip to content

Commit 335dab2

Browse files
committed
Missed another type quote
1 parent a2d83f5 commit 335dab2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ class MemoryListener(
176176
trio.StapledStream[trio.testing.MemorySendStream, trio.testing.MemoryReceiveStream]
177177
],
178178
] = attr.ib(factory=lambda: trio.open_memory_channel[
179-
trio.StapledStream[trio.testing.MemorySendStream, trio.testing.MemoryReceiveStream]
179+
"trio.StapledStream[trio.testing.MemorySendStream, trio.testing.MemoryReceiveStream]"
180180
](1))
181181
accept_hook: Callable[[], Awaitable[object]] | None = attr.ib(default=None)
182182

trio_websocket/_impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1693,7 +1693,7 @@ def listeners(self) -> list[Endpoint | str]:
16931693
listeners.append(repr(listener))
16941694
return listeners
16951695

1696-
async def run(
1696+
async def run( # type: ignore[misc]
16971697
self,
16981698
*,
16991699
task_status: trio.TaskStatus[WebSocketServer] = trio.TASK_STATUS_IGNORED,

0 commit comments

Comments
 (0)