mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
* run script and do some manual changes (Akuli) * do the whole thing manually (srittau) * merge changes (Akuli) Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
8 lines
219 B
Python
8 lines
219 B
Python
from typing import Any, Dict, Optional
|
|
|
|
_Text = str
|
|
|
|
class Completer:
|
|
def __init__(self, namespace: Optional[Dict[str, Any]] = ...) -> None: ...
|
|
def complete(self, text: _Text, state: int) -> Optional[str]: ...
|