From 04f879b30e2d105eac7bb8a5f1b41eaf4f1060dd Mon Sep 17 00:00:00 2001 From: Alnusjaponica <50256998+Alnusjaponica@users.noreply.github.com> Date: Thu, 15 Dec 2022 13:09:29 +0900 Subject: [PATCH] Fix typo --- optuna_dashboard/_app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/optuna_dashboard/_app.py b/optuna_dashboard/_app.py index 50ed4225..6834612e 100644 --- a/optuna_dashboard/_app.py +++ b/optuna_dashboard/_app.py @@ -304,7 +304,7 @@ def create_app(storage: BaseStorage, debug: bool = False) -> Bottle: intersection, union, union_user_attrs, - has_intermeridate_values, + has_intermediate_values, ) = get_cached_extra_study_property(study_id, trials) return serialize_study_detail( summary, @@ -312,7 +312,7 @@ def create_app(storage: BaseStorage, debug: bool = False) -> Bottle: intersection, union, union_user_attrs, - has_intermeridate_values, + has_intermediate_values, ) @app.get("/api/studies//param_importances")