Skip to content

Commit

Permalink
Remove redundant command line flags
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolCat467 committed Jan 14, 2025
1 parent 335dab2 commit fd09470
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ lint:
$(PYTHON) -m pylint trio_websocket/ tests/ autobahn/ examples/

typecheck:
$(PYTHON) -m mypy --explicit-package-bases trio_websocket tests autobahn examples
$(PYTHON) -m mypy

publish:
rm -fr build dist .egg trio_websocket.egg-info
Expand Down
2 changes: 1 addition & 1 deletion trio_websocket/_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,7 @@ def listeners(self) -> list[Endpoint | str]:
listeners.append(repr(listener))
return listeners

async def run( # type: ignore[misc]
async def run(
self,
*,
task_status: trio.TaskStatus[WebSocketServer] = trio.TASK_STATUS_IGNORED,
Expand Down

0 comments on commit fd09470

Please sign in to comment.