summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrique Joaquim <h.joaquim@campus.fct.unl.pt>2024-03-12 15:16:56 +0000
committerGitHub <noreply@github.com>2024-03-12 15:16:56 +0000
commit137e8b9757b5657ca877a7b0f2182807f228ec52 (patch)
treee4e301d822aff3bc853a81eae17894d956f01308
parentafd0708dcc20c9eb0269f981887d6280b3d0f317 (diff)
Remove charting extension preference from user settings (#6194)
-rw-r--r--openbb_platform/core/openbb_core/app/model/preferences.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/openbb_platform/core/openbb_core/app/model/preferences.py b/openbb_platform/core/openbb_core/app/model/preferences.py
index b793f35de10..57987020b17 100644
--- a/openbb_platform/core/openbb_core/app/model/preferences.py
+++ b/openbb_platform/core/openbb_core/app/model/preferences.py
@@ -13,7 +13,6 @@ class Preferences(BaseModel):
export_directory: str = str(Path.home() / "OpenBBUserData" / "exports")
user_styles_directory: str = str(Path.home() / "OpenBBUserData" / "styles" / "user")
cache_directory: str = str(Path.home() / "OpenBBUserData" / "cache")
- charting_extension: Literal["openbb_charting"] = "openbb_charting"
chart_style: Literal["dark", "light"] = "dark"
plot_enable_pywry: bool = True
plot_pywry_width: PositiveInt = 1400