Skip to content

Commit e5fb50d

Browse files
committed
quick double to single quote fix to satisfy python3.11
1 parent 3c6f250 commit e5fb50d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

httomo/yaml_checker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def check_omitted_parameters_are_not_required(conf: PipelineConfig) -> bool:
239239
for param in omitted_params:
240240
if template_param_dict[param] == "REQUIRED":
241241
err_str = (
242-
f"The parameter '{param}' for '{config["method"]}' was omitted but is "
242+
f"The parameter '{param}' for '{config['method']}' was omitted but is "
243243
"required."
244244
)
245245
_print_with_colour(err_str)

0 commit comments

Comments
 (0)