Skip to content

Commit

Permalink
Address the flake8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nabenabe0928 committed Feb 22, 2024
1 parent 3280647 commit 0ef5a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optuna_dashboard/_importance.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
try:
from optuna.importance import PedAnovaImportanceEvaluator
except ImportError:
_logger.warning(f"optuna>=3.6.0 is required for PedAnovaImportanceEvaluator.")
_logger.warning("optuna>=3.6.0 is required for PedAnovaImportanceEvaluator.")
PedAnovaImportanceEvaluator = None # type: ignore
except Exception as e:
_logger.warning(f"Skipping to use PedAnovaImportanceEvaluator due to {e}.")
Expand Down

0 comments on commit 0ef5a7b

Please sign in to comment.