mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
* Remove compatibility aliases Remove a few instances of Text Use aliases from _typeshed * Remove unused imports
6 lines
204 B
Python
6 lines
204 B
Python
from typing import Any, Dict, Optional
|
|
|
|
class Completer:
|
|
def __init__(self, namespace: Optional[Dict[str, Any]] = ...) -> None: ...
|
|
def complete(self, text: str, state: int) -> Optional[str]: ...
|