Files
optuna-dashboard/optuna_dashboard/app.py
T
2022-02-18 15:25:35 +09:00

16 lines
380 B
Python

import warnings
from bottle import Bottle
from optuna.storages import BaseStorage
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.",
DeprecationWarning,
)
return _create_app(storage)