demo feeder logic working

This commit is contained in:
msramalho
2022-11-24 15:44:25 +00:00
parent 618e7ed0a3
commit 9dc709d3b9
12 changed files with 216 additions and 85 deletions

View File

@@ -1,4 +1,4 @@
# we need to explicitly expose the available imports here
from .gworksheet import *
from .gworksheet import GWorksheet
from .misc import *
from .util import Util

View File

@@ -11,8 +11,7 @@ class Util(Step, ABC):
def __init__(self, config: dict) -> None:
Step.__init__(self)
# only for typing...
# only for typing...
def init(name: str, config: dict) -> Util:
return super().init(name, config, Util)