mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -3,7 +3,7 @@ from typing import Any
|
||||
__all__ = ["Completer"]
|
||||
|
||||
class Completer:
|
||||
def __init__(self, namespace: dict[str, Any] | None = ...) -> None: ...
|
||||
def __init__(self, namespace: dict[str, Any] | None = None) -> None: ...
|
||||
def complete(self, text: str, state: int) -> str | None: ...
|
||||
def attr_matches(self, text: str) -> list[str]: ...
|
||||
def global_matches(self, text: str) -> list[str]: ...
|
||||
|
||||
Reference in New Issue
Block a user