Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
eukaryo authored Dec 7, 2023
1 parent a8c451a commit f63b5e9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions python_tests/test_csv_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from typing import Any


import optuna
from optuna.trial import TrialState
from optuna_dashboard._app import create_app
Expand Down Expand Up @@ -95,7 +94,6 @@ def objective(trial: optuna.Trial) -> Any:
_validate_output(storage, 200, 0, extra_col_names=cols)



def test_download_csv_user_attr() -> None:
def objective(trial: optuna.Trial) -> float:
x = trial.suggest_float("x", -100, 100)
Expand All @@ -109,4 +107,3 @@ def objective(trial: optuna.Trial) -> float:
study.optimize(objective, n_trials=10)
cols = ["Param x", "Param y", "Value", "UserAttribute abs_y"]
_validate_output(storage, 200, 0, extra_col_names=cols)

0 comments on commit f63b5e9

Please sign in to comment.