mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-06 20:24:31 +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]]: ... |