Skip to content

Commit 8db036e

Browse files
committed
fix CI
1 parent 4d35de3 commit 8db036e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pyright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/setup-python@v2
99
with:
1010
python-version: '3.9'
11-
- run: pip install .[speedups]
11+
- run: pip install .[speedups,docs]
1212
- uses: jakebailey/pyright-action@v1
1313
with:
1414
lib: true

revolt/websocket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ async def start(self):
424424

425425
async for msg in self.websocket:
426426
if use_msgpack:
427-
data: bytes = cast(bytes, msg.data)
427+
data = cast(bytes, msg.data)
428428

429429
payload = msgpack.unpackb(data)
430430
else:

0 commit comments

Comments
 (0)