mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-01-28 13:52:12 +08:00
8 lines
138 B
Python
8 lines
138 B
Python
from typing import (
|
|
Optional,
|
|
Union,
|
|
)
|
|
|
|
|
|
class DictWrapper:
|
|
def __getitem__(self, key: str) -> Optional[Union[str, int]]: ... |