Skip to content

Commit 539aed3

Browse files
committed
Fixed an error with quotes in an f-string
1 parent 8836ce2 commit 539aed3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel_tuner/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1211,7 +1211,7 @@ def process_cache(cache, kernel_options, tuning_options, runner):
12111211
# checks the equality of all items in the list/tuples individually
12121212
elif not all([i == j for i, j in zip(cached_data["problem_size"], kernel_options.problem_size)]):
12131213
raise ValueError(
1214-
f"Cannot load cache which contains results for different problem_size ({cached_data["problem_size"]=} != {kernel_options.problem_size=})"
1214+
f"Cannot load cache which contains results for different problem_size ({cached_data['problem_size']=} != {kernel_options.problem_size=})"
12151215
)
12161216
if cached_data["tune_params_keys"] != list(tuning_options.tune_params.keys()):
12171217
if all(key in tuning_options.tune_params for key in cached_data["tune_params_keys"]):

0 commit comments

Comments
 (0)