Skip to content

Commit

Permalink
Format f string
Browse files Browse the repository at this point in the history
  • Loading branch information
ppinchuk authored May 2, 2024
1 parent 739425b commit defb90f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gaps/batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def _remove_sub_dirs(self, job_table):
logger.info("Removing batch job directory: %r", sub_dir)
shutil.rmtree(job_dir)
else:
msg = "Cannot find batch job directory: {sub_dir!r}"
msg = f"Cannot find batch job directory: {sub_dir!r}"
warn(msg, gapsWarning)

def run(self, dry_run=False, monitor_background=False):
Expand Down

0 comments on commit defb90f

Please sign in to comment.