summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorteh_coderer <me@tehcoderer.com>2023-03-06 10:08:05 -0600
committerGitHub <noreply@github.com>2023-03-06 10:08:05 -0600
commit853dbee3768cc8f64c50bc64a78d23accffd841b (patch)
tree3f361eb877a16f09ebc44040aa2b1f4d76614ef6
parent6f2f0c118ef55528c9dcf40026c683831e9be1c3 (diff)
parent324dcb77e6dba4c2422de907ce98ec8097e8f23b (diff)
Merge branch 'develop' into feature/tables
-rw-r--r--openbb_terminal/helper_classes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbb_terminal/helper_classes.py b/openbb_terminal/helper_classes.py
index 90bf2ba730a..ada9841ff8c 100644
--- a/openbb_terminal/helper_classes.py
+++ b/openbb_terminal/helper_classes.py
@@ -123,7 +123,7 @@ class TerminalStyle:
if mpl_style in self.mpl_styles_available:
self.mpl_style = self.mpl_styles_available[mpl_style]
else:
- self.mpl_style = self.mpl_styles_available["dark"]
+ self.mpl_style = self.mpl_styles_available.get("dark", "")
if mpl_style in self.mpl_rcparams_available:
with open(self.mpl_rcparams_available[mpl_style]) as stylesheet: