Skip to content

Commit

Permalink
fix(runner): change TaskConfig to BatchTaskConfig in base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Aug 14, 2023
1 parent 48ee6e0 commit b456d9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hyfi/runner/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

from hyfi.pipeline.config import RunningCalls, RunningConfig, get_running_configs
from hyfi.run import RunConfig
from hyfi.task import TaskConfig
from hyfi.task import BatchTaskConfig
from hyfi.utils.contexts import elapsed_timer
from hyfi.utils.logging import LOGGING

logger = LOGGING.getLogger(__name__)


class BaseRunner(TaskConfig):
class BaseRunner(BatchTaskConfig):
_config_group_: str = "/runner"
_config_name_: str = "__init__"

Expand Down

0 comments on commit b456d9b

Please sign in to comment.