summaryrefslogtreecommitdiffstats
path: root/openbb_terminal/sdk.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_terminal/sdk.py')
-rw-r--r--openbb_terminal/sdk.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/openbb_terminal/sdk.py b/openbb_terminal/sdk.py
index e47632c4b17..772854ee362 100644
--- a/openbb_terminal/sdk.py
+++ b/openbb_terminal/sdk.py
@@ -1,32 +1,48 @@
"""OpenBB Terminal SDK."""
+
# ######### THIS FILE IS AUTO GENERATED - ANY CHANGES WILL BE VOID ######### #
+
# flake8: noqa
+
# pylint: disable=unused-import,wrong-import-order
+
# pylint: disable=C0302,W0611,R0902,R0903,C0412,C0301,not-callable
+
import logging
import openbb_terminal.config_terminal as cfg
+
from openbb_terminal import helper_funcs as helper # noqa: F401
+
from openbb_terminal.core.plots.plotly_helper import theme # noqa: F401
from openbb_terminal.cryptocurrency.due_diligence.pycoingecko_model import Coin
+
from openbb_terminal.dashboards.dashboards_controller import DashboardsController
+
from openbb_terminal.helper_classes import TerminalStyle # noqa: F401
+
from openbb_terminal.reports import widget_helpers as widgets # noqa: F401
+
from openbb_terminal.reports.reports_controller import ReportController
import openbb_terminal.core.sdk.sdk_init as lib
+
from openbb_terminal.core.sdk import (
controllers as ctrl,
models as model,
)
+
from openbb_terminal.core.session.current_system import get_current_system
+
from openbb_terminal.core.session.current_user import is_local
+
from openbb_terminal.terminal_helper import is_auth_enabled
cfg.setup_config_terminal(is_sdk=True)
logger = logging.getLogger(__name__)
+
cfg.theme.applyMPLstyle()