mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
move generated stubs to separate directory, too messty
This commit is contained in:
18
django-stubs-generated/db/backends/mysql/client.pyi
Normal file
18
django-stubs-generated/db/backends/mysql/client.pyi
Normal file
@@ -0,0 +1,18 @@
|
||||
from typing import Any, Dict, List, Optional, Union
|
||||
|
||||
from django.db.backends.base.client import BaseDatabaseClient
|
||||
|
||||
|
||||
class DatabaseClient(BaseDatabaseClient):
|
||||
executable_name: str = ...
|
||||
@classmethod
|
||||
def settings_to_cmd_args(
|
||||
cls,
|
||||
settings_dict: Dict[
|
||||
str,
|
||||
Optional[
|
||||
Union[Dict[str, Dict[str, str]], int, str]
|
||||
],
|
||||
],
|
||||
) -> List[str]: ...
|
||||
def runshell(self) -> None: ...
|
||||
Reference in New Issue
Block a user