third-party: make some protocol params pos-only (#11006)

This commit is contained in:
Jelle Zijlstra
2023-11-09 22:40:10 -08:00
committed by GitHub
parent 4deef7550f
commit 0c7bdffa90
7 changed files with 11 additions and 11 deletions
@@ -9,7 +9,7 @@ __version__: str
class _Stream(Protocol):
def isatty(self) -> bool: ...
def flush(self) -> None: ...
def write(self, s: str) -> int: ...
def write(self, __s: str) -> int: ...
class Spinner:
spinner_cycle: Iterator[str]