Updated docs

This commit is contained in:
2023-02-20 15:55:20 +01:00
parent 48d0daabf5
commit 9e28dce5ce
632 changed files with 10917 additions and 6775 deletions

View File

@@ -2,18 +2,21 @@ from abc import ABC, abstractmethod
class TemplateFileABC(ABC):
@abstractmethod
def __init__(self): pass
def __init__(self):
pass
@property
@abstractmethod
def name(self) -> str: pass
def name(self) -> str:
pass
@property
@abstractmethod
def path(self) -> str: pass
def path(self) -> str:
pass
@property
@abstractmethod
def value(self) -> str: pass
def value(self) -> str:
pass