Files
django-stubs/django/utils/datastructures.pyi
2018-07-29 18:27:46 +03:00

8 lines
138 B
Python

from typing import (
Optional,
Union,
)
class DictWrapper:
def __getitem__(self, key: str) -> Optional[Union[str, int]]: ...