Skip to content

Commit

Permalink
ci(lint): verifytypes doesnt even work
Browse files Browse the repository at this point in the history
  • Loading branch information
ooliver1 committed Oct 25, 2022
1 parent efc8f83 commit 6d96461
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ jobs:
# only add comments for 3.8
no-comments: ${{ matrix.python-version != '3.8' }}
warnings: true
verify-types: mafic

- name: Run pyright (Windows)
uses: jakebailey/[email protected]
Expand All @@ -94,7 +93,6 @@ jobs:
# only add comments for one platform
no-comments: true
warnings: true
verify-types: mafic

slotscheck:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion mafic/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def update_state(self, state: PlayerUpdateState) -> None:
self._ping = state["ping"]

# If people are so in love with the VoiceClient interface
def is_connected(self):
def is_connected(self) -> bool:
return self._connected

async def _dispatch_player_update(self) -> None:
Expand Down

0 comments on commit 6d96461

Please sign in to comment.