mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 00:07:09 +08:00
8 lines
175 B
Python
8 lines
175 B
Python
from typing import (
|
|
Tuple,
|
|
Union,
|
|
)
|
|
|
|
|
|
class Loader:
|
|
def get_dirs(self) -> Union[Tuple[str, str], Tuple[str, str, str], Tuple[str], Tuple[str, str, str, str]]: ... |