mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 13:04:47 +08:00
11 lines
227 B
Python
11 lines
227 B
Python
from typing import Optional, Tuple
|
|
|
|
from django.template import Engine
|
|
|
|
from .filesystem import Loader as FilesystemLoader
|
|
|
|
class Loader(FilesystemLoader):
|
|
dirs: None
|
|
engine: Engine
|
|
def get_dirs(self) -> Tuple: ...
|