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