Skip to content

Commit d4cf2e7

Browse files
committed
Use f-strings
1 parent 706c74f commit d4cf2e7

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

dataflow_transfer/run_classes/generic_runs.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ def _resolve_run_id_format(self):
5454
)
5555
except Exception as exc:
5656
logger.warning(
57-
"Unable to load run_id_format for %s from regex config: %s",
58-
self.run_type,
59-
exc,
57+
f"Unable to load run_id_format for {self.run_type} from regex config: {exc}"
6058
)
6159

6260
return run_id_format

0 commit comments

Comments
 (0)