Refactor containers for inheritance and delayed loading
This commit is contained in:
parent
d1baab7c0b
commit
6ddc98a947
8 changed files with 234 additions and 173 deletions
|
|
@ -168,6 +168,9 @@ class ScriptBase(with_metaclass(TypeclassBase, ScriptDB)):
|
|||
def __str__(self):
|
||||
return "<{cls} {key}>".format(cls=self.__class__.__name__, key=self.key)
|
||||
|
||||
def __repr__(self):
|
||||
return str(self)
|
||||
|
||||
def _start_task(self):
|
||||
"""
|
||||
Start task runner.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue