From ae2190c1c6b0684be1ac5254b00b2f0e81e65d80 Mon Sep 17 00:00:00 2001 From: c-bata Date: Fri, 18 Feb 2022 15:25:35 +0900 Subject: [PATCH] Fix lint errors --- optuna_dashboard/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/optuna_dashboard/app.py b/optuna_dashboard/app.py index 18ecfe38..826fcd88 100644 --- a/optuna_dashboard/app.py +++ b/optuna_dashboard/app.py @@ -8,7 +8,8 @@ from ._app import create_app as _create_app def create_app(storage: BaseStorage) -> Bottle: warnings.warn( - "This function will be removed in the future. Please use optuna_dashboard.run_server() instead.", + "This function will be removed in the future." + " Please use optuna_dashboard.run_server() instead.", DeprecationWarning, ) return _create_app(storage)