mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 04:34:29 +08:00
13 lines
246 B
Python
13 lines
246 B
Python
from typing import Any
|
|
|
|
|
|
def autodiscover_modules(*args, **kwargs) -> None: ...
|
|
|
|
|
|
def import_string(dotted_path: str) -> object: ...
|
|
|
|
|
|
def module_dir(module: Any) -> str: ...
|
|
|
|
|
|
def module_has_submodule(package: Any, module_name: str) -> bool: ... |