mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
change empty bodies from "pass" to "..."
CONTRIBUTING.md says to prefer ... Not the most impactful change but fixing these will allow us to lint for it in the future and get a consistent style.
This commit is contained in:
committed by
Łukasz Langa
parent
17be26165d
commit
349ff59f33
@@ -18,7 +18,7 @@ class Queue(Generic[_T]):
|
||||
def put_nowait(self, item: _T) -> None: ...
|
||||
def join(self) -> None: ...
|
||||
def qsize(self) -> int: ...
|
||||
def task_done(self) -> None: pass
|
||||
def task_done(self) -> None: ...
|
||||
|
||||
class PriorityQueue(Queue): ...
|
||||
class LifoQueue(Queue): ...
|
||||
|
||||
Reference in New Issue
Block a user