diff --git a/djlint/types.py b/djlint/types.pyi similarity index 87% rename from djlint/types.py rename to djlint/types.pyi index 6aca404dd..ca73d51fe 100644 --- a/djlint/types.py +++ b/djlint/types.pyi @@ -1,15 +1,11 @@ -from __future__ import annotations - from typing_extensions import TypedDict - class LintError(TypedDict): code: str line: str match: str message: str - class ProcessResult(TypedDict, total=False): format_message: dict[str, tuple[str, ...]] lint_message: dict[str, list[LintError]]