From 5773660d824276733b4d42d1beadca8268c89339 Mon Sep 17 00:00:00 2001 From: Mario Picciani Date: Tue, 3 Dec 2024 15:55:16 +0100 Subject: [PATCH] fixed f-string --- drevalpy/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drevalpy/utils.py b/drevalpy/utils.py index 8ab2f93..272b938 100644 --- a/drevalpy/utils.py +++ b/drevalpy/utils.py @@ -212,7 +212,7 @@ def check_arguments(args) -> None: if not expected_custom_input.is_file(): raise FileNotFoundError( "You specified the curve_curator option with a custom dataset name which requires raw " - "viability data to be located at {expected_custom_input} but the file does not exist. " + f"viability data to be located at {expected_custom_input} but the file does not exist. " "Please check the 'path_data' and 'dataset_name' arguments and ensure the raw viability " "input file is located at //_raw.csv." ) @@ -221,7 +221,7 @@ def check_arguments(args) -> None: if not expected_custom_input.is_file(): raise FileNotFoundError( "You specified a custom dataset name which requires prefit curve data to be located at " - "{expected_custom_input} but the file does not exist. Please check the 'path_data' and " + f"{expected_custom_input} but the file does not exist. Please check the 'path_data' and " "'dataset_name' arguments and ensure the prefit curve data is located at input file is " "located at //.csv." )