mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
6 lines
188 B
Python
6 lines
188 B
Python
from typing import Any, Dict
|
|
|
|
class Completer:
|
|
def __init__(self, namespace: Dict[str, Any] | None = ...) -> None: ...
|
|
def complete(self, text: str, state: int) -> str | None: ...
|