final naming cleanup + new feeders/dbs

This commit is contained in:
msramalho
2023-01-21 19:44:12 +00:00
parent 753039240f
commit b763fc4188
34 changed files with 322 additions and 927 deletions

View File

@@ -28,7 +28,7 @@ class Step(ABC):
for sub in child.__subclasses__():
if sub.name == name:
return sub(config)
raise ClassFoundException(f"Unable to initialize STEP with {name=}, check your configuration file/step names.")
raise ClassFoundException(f"Unable to initialize STEP with {name=}, check your configuration file/step names, and make sure you made the step discoverable by putting it into __init__.py")
def assert_valid_string(self, prop: str) -> None:
"""