Skip to content

Commit

Permalink
Update helper_classes.py (#4378)
Browse files Browse the repository at this point in the history
Co-authored-by: James Maslek <[email protected]>
  • Loading branch information
2 people authored and JerBouma committed Mar 6, 2023
1 parent 45e4f8b commit 1d22396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openbb_terminal/helper_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def __init__(
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:
Expand Down

0 comments on commit 1d22396

Please sign in to comment.