From d97be3b90e3cb81f0ac209b51c9d340f68694fe6 Mon Sep 17 00:00:00 2001 From: monosans Date: Tue, 5 Nov 2024 08:51:59 +0300 Subject: [PATCH] fix: types.py -> types.pyi --- djlint/{types.py => types.pyi} | 4 ---- 1 file changed, 4 deletions(-) rename djlint/{types.py => types.pyi} (87%) 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]]