Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ppinchuk committed Aug 19, 2024
1 parent 2278eea commit c78829e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gaps/cli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def kickoff_jobs(self):
return self

def _with_tagged_context(self, jobs):
"""Iterate over jobs and populate context with job name. """
"""Iterate over jobs and populate context with job name."""
num_jobs_submit = len(jobs)

exec_kwargs = deepcopy(self.exec_kwargs)
Expand All @@ -281,7 +281,7 @@ def _with_tagged_context(self, jobs):
yield tag, values, exec_kwargs

def _compile_node_config(self, tag):
"""Compile initial node-specific config. """
"""Compile initial node-specific config."""
job_name = self.ctx.obj["NAME"]
node_specific_config = deepcopy(self.config)
node_specific_config.pop("execution_control", None)
Expand All @@ -301,7 +301,7 @@ def _compile_node_config(self, tag):
return node_specific_config

def _compile_run_command(self, node_specific_config):
"""Create run command from config and job name. """
"""Create run command from config and job name."""
job_name = self.ctx.obj["NAME"]
cmd = "; ".join(_CMD_LIST).format(
run_func_module=self.command_config.runner.__module__,
Expand Down

0 comments on commit c78829e

Please sign in to comment.