Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Aug 15, 2023
1 parent 2cbc74a commit 5a1d210
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion looper/looper.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,9 @@ def __call__(self, args, rerun=False, **compute_kwargs):
if args.dry_run:
job_sub_total_if_real = job_sub_total
job_sub_total = 0
_LOGGER.info(f"Dry run. No jobs were actually submitted, but {job_sub_total_if_real} would have been.")
_LOGGER.info(
f"Dry run. No jobs were actually submitted, but {job_sub_total_if_real} would have been."
)
_LOGGER.info("Jobs submitted: {}".format(job_sub_total))

# Restructure sample/failure data for display.
Expand Down
2 changes: 1 addition & 1 deletion looper/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def _extra_cli_or_cfg(self, attr_name, strict=False):
"""
try:
result = self[EXTRA_KEY][attr_name]
# getattr(self[EXTRA_KEY], attr_name))
# getattr(self[EXTRA_KEY], attr_name))
except (AttributeError, KeyError):
pass
else:
Expand Down

0 comments on commit 5a1d210

Please sign in to comment.