gsheet accepts ID too

This commit is contained in:
msramalho
2023-05-19 12:17:34 +01:00
parent d645b840ee
commit a655b3c987
3 changed files with 12 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ class Step(ABC):
def init(name: str, config: dict, child: Type[Step]) -> Step:
"""
looks into direct subclasses of child for name and returns such ab object
looks into direct subclasses of child for name and returns such an object
TODO: cannot find subclasses of child.subclasses
"""
for sub in child.__subclasses__():