We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d35de3 commit 8db036eCopy full SHA for 8db036e
2 files changed
.github/workflows/pyright.yml
@@ -8,7 +8,7 @@ jobs:
8
- uses: actions/setup-python@v2
9
with:
10
python-version: '3.9'
11
- - run: pip install .[speedups]
+ - run: pip install .[speedups,docs]
12
- uses: jakebailey/pyright-action@v1
13
14
lib: true
revolt/websocket.py
@@ -424,7 +424,7 @@ async def start(self):
424
425
async for msg in self.websocket:
426
if use_msgpack:
427
- data: bytes = cast(bytes, msg.data)
+ data = cast(bytes, msg.data)
428
429
payload = msgpack.unpackb(data)
430
else:
0 commit comments