Files
django-stubs/django/utils/module_loading.pyi
2018-07-29 18:27:46 +03:00

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: ...