summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormontezdesousa <79287829+montezdesousa@users.noreply.github.com>2023-05-25 15:47:10 +0100
committerGitHub <noreply@github.com>2023-05-25 14:47:10 +0000
commit8609b7b1e7892cfad6fb870cb471dd8b4fb3393d (patch)
tree4b002eb3236c5ebcf8d6cc2627811f125c392725
parente07a5a382619cdbfec3a4f5188aa9dea958cbdf9 (diff)
always reevaluate keys menu (#5055)
-rw-r--r--openbb_terminal/keys_controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbb_terminal/keys_controller.py b/openbb_terminal/keys_controller.py
index 22acccfc7a9..c00a8248e06 100644
--- a/openbb_terminal/keys_controller.py
+++ b/openbb_terminal/keys_controller.py
@@ -77,7 +77,7 @@ class KeysController(BaseController): # pylint: disable=too-many-public-methods
hierarchy = "\n ".join(list(map(str, reversed(reading_order))))
return hierarchy if is_local() else f"{KEYS_URL}\n {hierarchy}"
- def print_help(self, update_status: bool = False, reevaluate: bool = False):
+ def print_help(self, update_status: bool = True, reevaluate: bool = True):
"""Print help"""
self.check_keys_status(reevaluate=reevaluate)
mt = MenuText("keys/")