Skip to content

Commit

Permalink
Remove rcontext flag
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorWounds committed May 10, 2024
1 parent 46fa3aa commit 8a1f64b
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions cli/openbb_cli/controllers/settings_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class SettingsController(BaseController):
"thoughts",
"reporthtml",
"exithelp",
"rcontext",
"richpanel",
"tbhint",
"overwrite",
Expand Down Expand Up @@ -61,7 +60,6 @@ def print_help(self):
mt.add_setting("cls", settings.USE_CLEAR_AFTER_CMD)
mt.add_setting("promptkit", settings.USE_PROMPT_TOOLKIT)
mt.add_setting("exithelp", settings.ENABLE_EXIT_AUTO_HELP)
mt.add_setting("rcontext", settings.REMEMBER_CONTEXTS)
mt.add_setting("richpanel", settings.ENABLE_RICH_PANEL)
mt.add_setting("tbhint", settings.TOOLBAR_HINT)
mt.add_setting("overwrite", settings.FILE_OVERWRITE)
Expand Down Expand Up @@ -111,12 +109,6 @@ def call_exithelp(self, _):
"ENABLE_EXIT_AUTO_HELP", not session.settings.ENABLE_EXIT_AUTO_HELP
)

def call_rcontext(self, _):
"""Process rcontext command."""
session.settings.set_item(
"REMEMBER_CONTEXTS", not session.settings.REMEMBER_CONTEXTS
)

def call_dt(self, _):
"""Process dt command."""
session.settings.set_item("USE_DATETIME", not session.settings.USE_DATETIME)
Expand Down

0 comments on commit 8a1f64b

Please sign in to comment.