summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Maslek <jmaslek11@gmail.com>2023-03-07 16:29:32 -0500
committerJames Maslek <jmaslek11@gmail.com>2023-03-07 16:29:32 -0500
commitfcd22a6d3f3eba5379448e52882521d2c7de54c2 (patch)
tree68a56ed3ccceca3054a6732b57355fc928a8e1aa
parentd75701981506bd2cef8418a98cad9886b42dc04e (diff)
Fix #4426
-rw-r--r--openbb_terminal/stocks/stocks_controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbb_terminal/stocks/stocks_controller.py b/openbb_terminal/stocks/stocks_controller.py
index 7431695b70a..e590808696b 100644
--- a/openbb_terminal/stocks/stocks_controller.py
+++ b/openbb_terminal/stocks/stocks_controller.py
@@ -376,7 +376,7 @@ class StocksController(StockBaseController):
dest="ticker",
help="Ticker to analyze",
type=str,
- default=self.ticker,
+ default=None,
required=not any(x in other_args for x in ["-h", "--help"])
and not self.ticker,
)