Skip to content

Commit

Permalink
Reformat file with black
Browse files Browse the repository at this point in the history
  • Loading branch information
deajan committed Oct 30, 2024
1 parent 720d858 commit d4f58f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion npbackup/core/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -1667,7 +1667,9 @@ def group_runner(self, repo_config_list: List, operation: str, **kwargs) -> bool
try:
result = self.__getattribute__(operation)(**kwargs)
except Exception as exc:
logger.error(f"Operation {operation} for repo {repo_name} failed with: {exc}")
logger.error(
f"Operation {operation} for repo {repo_name} failed with: {exc}"
)
logger.debug("Trace", exc_info=True)
result = False
if self.json_output:
Expand Down

0 comments on commit d4f58f7

Please sign in to comment.