Replace Any with Incomplete in distutils (#12842)

This commit is contained in:
Avasam
2024-10-18 11:26:08 -04:00
committed by GitHub
parent 281dd351a2
commit de4842db26
24 changed files with 216 additions and 198 deletions

View File

@@ -8,6 +8,7 @@ FATAL: Final = 5
class Log:
def __init__(self, threshold: int = 3) -> None: ...
# Arbitrary msg args' type depends on the format method
def log(self, level: int, msg: str, *args: Any) -> None: ...
def debug(self, msg: str, *args: Any) -> None: ...
def info(self, msg: str, *args: Any) -> None: ...