Skip to content

Commit 69ef222

Browse files
We have nanoid types
1 parent bd29268 commit 69ef222

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/replit_river/client_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from datetime import timedelta
55
from typing import Any, AsyncGenerator, Callable, Coroutine
66

7-
import nanoid # type: ignore
7+
import nanoid
88
import websockets
99
from aiochannel import Channel
1010
from aiochannel.errors import ChannelClosed

src/replit_river/server_transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import logging
33
from typing import Any
44

5-
import nanoid # type: ignore # type: ignore
5+
import nanoid
66
from pydantic import ValidationError
77
from websockets import (
88
WebSocketCommonProtocol,

src/replit_river/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import logging
33
from typing import Any, Awaitable, Callable, Coroutine, TypeAlias
44

5-
import nanoid # type: ignore
5+
import nanoid
66
import websockets
77
from aiochannel import Channel
88
from opentelemetry.trace import Span, use_span

src/replit_river/v2/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
assert_never,
1616
)
1717

18-
import nanoid # type: ignore
18+
import nanoid
1919
import websockets.asyncio.client
2020
from aiochannel import Channel
2121
from aiochannel.errors import ChannelClosed

0 commit comments

Comments
 (0)