add more args to condition function, add ConditionArgs, homogenize attribute names
This commit is contained in:
parent
65aed3e31f
commit
8c500da277
5 changed files with 39 additions and 24 deletions
|
|
@ -52,7 +52,7 @@ class Coordinator:
|
|||
"""Creates an instance of the correct Runner class for each given env file"""
|
||||
runners: list[Runner] = []
|
||||
for index, env_file in enumerate(env_files):
|
||||
RunnerClass = self.RUNNER_DICT[env_file.config["TYPE"]]
|
||||
RunnerClass = self.RUNNER_DICT[env_file.env_config["TYPE"]]
|
||||
runners.append(RunnerClass(coordinator=self, runner_index=index))
|
||||
return runners
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue