summaryrefslogtreecommitdiff
path: root/htmtl/modifier.py
diff options
context:
space:
mode:
authorAsko Nõmm <asko@nmm.ee>2025-01-02 21:36:00 +0200
committerAsko Nõmm <asko@nmm.ee>2025-01-02 21:36:00 +0200
commit89848de97da23a8c732f54bde15080b09e2bb9d9 (patch)
tree8f257163125fbaff61fcc2f4565911acdbe4cf08 /htmtl/modifier.py
parent689fe2613765de71101214a482c928cfdb1b2be6 (diff)
bump
Diffstat (limited to 'htmtl/modifier.py')
-rw-r--r--htmtl/modifier.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/htmtl/modifier.py b/htmtl/modifier.py
index a771cca..c758022 100644
--- a/htmtl/modifier.py
+++ b/htmtl/modifier.py
@@ -3,17 +3,6 @@ from typing import Any
class Modifier(ABC):
- name: str
-
@abstractmethod
def modify(self, value: Any, opts: list[Any]) -> Any:
pass
-
-
-def modifier_name(name: str):
- def wrapper(cls: type[Modifier]):
- cls.name = name
-
- return cls
-
- return wrapper \ No newline at end of file