Skip to content

Commit 69fa7c3

Browse files
committed
Fix ty issues
1 parent 6d2a200 commit 69fa7c3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/generate_experiment_results.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ def create_test(problem_name: str, solver_name: str) -> None:
5858
# Loop through each curve object and convert it into a tuple
5959
# This is done to avoid packing custom classes into the YAML file
6060
for i in range(len(myexperiment.objective_curves)):
61-
myexperiment.objective_curves[i] = ( # type: ignore
61+
myexperiment.objective_curves[i] = (
6262
myexperiment.objective_curves[i].x_vals,
6363
myexperiment.objective_curves[i].y_vals,
6464
)
6565
for i in range(len(myexperiment.progress_curves)):
66-
myexperiment.progress_curves[i] = ( # type: ignore
66+
myexperiment.progress_curves[i] = (
6767
myexperiment.progress_curves[i].x_vals,
6868
myexperiment.progress_curves[i].y_vals,
6969
)

0 commit comments

Comments
 (0)