Fix lint errors

This commit is contained in:
c-bata
2022-02-18 15:25:35 +09:00
parent c79135b524
commit ae2190c1c6
+2 -1
View File
@@ -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)