Skip to content

Commit

Permalink
fix indent norm
Browse files Browse the repository at this point in the history
  • Loading branch information
danholdaway committed May 8, 2024
1 parent 14e2fad commit 7337d14
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ush/python/pygfs/task/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ def get_jedi_config(self, algorithm: Optional[str] = None) -> Dict[str, Any]:
# Step 3: generate the JEDI Yaml using JCB driving YAML
jedi_config = render(jcb_config)
elif 'JEDIYAML' in self.task_config.keys():
# Generate JEDI YAML file (without using JCB)
logger.info(f"Generate JEDI YAML config: {self.task_config.jedi_yaml}")
jedi_config = parse_j2yaml(self.task_config.JEDIYAML, self.task_config,
searchpath=self.gdasapp_j2tmpl_dir)
logger.debug(f"JEDI config:\n{pformat(jedi_config)}")
# Generate JEDI YAML file (without using JCB)
logger.info(f"Generate JEDI YAML config: {self.task_config.jedi_yaml}")
jedi_config = parse_j2yaml(self.task_config.JEDIYAML, self.task_config,
searchpath=self.gdasapp_j2tmpl_dir)
logger.debug(f"JEDI config:\n{pformat(jedi_config)}")
else:
raise KeyError(f"Task config must contain JCB_BASE_YAML or JEDIYAML")

Expand Down

0 comments on commit 7337d14

Please sign in to comment.