Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Zomatree committed Jan 2, 2023
1 parent 4d35de3 commit 8db036e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pyright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: '3.9'
- run: pip install .[speedups]
- run: pip install .[speedups,docs]
- uses: jakebailey/pyright-action@v1
with:
lib: true
Expand Down
2 changes: 1 addition & 1 deletion revolt/websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ async def start(self):

async for msg in self.websocket:
if use_msgpack:
data: bytes = cast(bytes, msg.data)
data = cast(bytes, msg.data)

payload = msgpack.unpackb(data)
else:
Expand Down

0 comments on commit 8db036e

Please sign in to comment.