summaryrefslogtreecommitdiff
path: root/htmtl/modifier.py
diff options
context:
space:
mode:
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