mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
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.
6 lines
197 B
Python
6 lines
197 B
Python
from typing import Any
|
|
|
|
def getline(filename: str, lineno: int, module_globals: Any=...) -> str: ...
|
|
def clearcache() -> None: ...
|
|
def getlines(filename: str, module_globals: Any=...) -> None: ...
|