Skip to content

Commit bd1b4c3

Browse files
committed
Bug fix due to brackets in f-string
1 parent 9ce7cd2 commit bd1b4c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel_tuner/interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ def tune_kernel(
687687
tuning_options["startup_time"] = perf_counter() - start_overhead_time
688688
if tuning_options["startup_time"] > tuning_options["time_limit"]:
689689
raise RuntimeError(
690-
f"The startup time of the tuning process ({tuning_options["startup_time"]} seconds) has exceeded the time limit ({tuning_options["time_limit"]} seconds). "
690+
f"The startup time of the tuning process ({tuning_options['startup_time']} seconds) has exceeded the time limit ({tuning_options['time_limit']} seconds). "
691691
"Please increase the time limit or decrease the size of the search space."
692692
)
693693
tuning_options["start_time"] = perf_counter()

0 commit comments

Comments
 (0)