Skip to content

Commit

Permalink
Fix type hint of BaseEngine.template_dirs (#1954)
Browse files Browse the repository at this point in the history
  • Loading branch information
Viicos committed Feb 17, 2024
1 parent 2a2231a commit 1d91c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django-stubs/template/backends/base.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class BaseEngine:
def from_string(self, template_code: str) -> _EngineTemplate: ...
def get_template(self, template_name: str) -> _EngineTemplate: ...
@cached_property
def template_dirs(self) -> tuple[str]: ...
def template_dirs(self) -> tuple[str, ...]: ...
def iter_template_filenames(self, template_name: str) -> Iterator[str]: ...

@type_check_only
Expand Down

0 comments on commit 1d91c75

Please sign in to comment.