mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-06 20:24:31 +08:00
14 lines
281 B
Python
14 lines
281 B
Python
from _frozen_importlib_external import _NamespacePath
|
|
from typing import (
|
|
List,
|
|
Optional,
|
|
Union,
|
|
)
|
|
|
|
|
|
class _SixMetaPathImporter:
|
|
def find_module(
|
|
self,
|
|
fullname: str,
|
|
path: Optional[Union[List[str], _NamespacePath]] = ...
|
|
) -> None: ... |