mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-02-12 13:11:43 +08:00
10 lines
190 B
Python
10 lines
190 B
Python
from typing import (
|
|
Dict,
|
|
List,
|
|
Optional,
|
|
)
|
|
|
|
|
|
class DatabaseClient:
|
|
@classmethod
|
|
def settings_to_cmd_args(cls, settings_dict: Dict[str, Optional[str]]) -> List[str]: ... |