Skip to content

Commit

Permalink
Fix style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bouweandela committed Sep 26, 2024
1 parent a657567 commit aabf7b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions esmvalcore/preprocessor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def check_preprocessor_settings(settings):
signature.bind(None, **settings[step])
except TypeError:
logger.error(
"Wrong preprocessor function arguments in " "function '%s'",
"Wrong preprocessor function arguments in function '%s'",
step,
)
raise
Expand Down Expand Up @@ -354,7 +354,7 @@ def _run_preproc_function(function, items, kwargs, input_files=None):
file_msg = ""
else:
file_msg = (
f"\nloaded from original input file(s)\n" f"{pformat(input_files)}"
f"\nloaded from original input file(s)\n{pformat(input_files)}"
)
logger.debug(
"Running preprocessor function '%s' on the data\n%s%s\nwith function "
Expand Down

0 comments on commit aabf7b3

Please sign in to comment.