Spaces:
No application file
No application file
from .attributes import AttriributeIsText | |
from . import AttrRegister | |
__all__ = ["Style"] | |
class Style(AttriributeIsText): | |
name = "style" | |
def __init__(self, name: str = None) -> None: | |
super().__init__(name) | |