Files
django-stubs/django-stubs/utils/module_loading.pyi

7 lines
247 B
Python

from typing import Any
def import_string(dotted_path: str) -> Any: ...
def autodiscover_modules(*args: Any, **kwargs: Any) -> None: ...
def module_has_submodule(package: Any, module_name: str) -> bool: ...
def module_dir(module: Any) -> str: ...