Add models, analyzers, and formatters
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-01 07:58:04 +00:00
parent 36c33798d0
commit 77c3f08194

View File

@@ -3,9 +3,10 @@ from typing import Any
class BaseFormatter(ABC):
"""Base class for formatters."""
"""Base formatter interface."""
@staticmethod
@abstractmethod
def format(self, data: Any) -> str:
def format(data: Any) -> str:
"""Format data to string."""
pass