summaryrefslogtreecommitdiffstats
path: root/openbb_terminal/terminal_controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_terminal/terminal_controller.py')
-rw-r--r--openbb_terminal/terminal_controller.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/openbb_terminal/terminal_controller.py b/openbb_terminal/terminal_controller.py
index d4d67a1bd70..45d200146ba 100644
--- a/openbb_terminal/terminal_controller.py
+++ b/openbb_terminal/terminal_controller.py
@@ -57,7 +57,6 @@ from openbb_terminal.terminal_helper import (
print_goodbye,
reset,
suppress_stdout,
- update_terminal,
welcome_message,
)
@@ -83,7 +82,6 @@ class TerminalController(BaseController):
"keys",
"settings",
"survey",
- "update",
"featflags",
"exe",
"guess",
@@ -213,8 +211,6 @@ class TerminalController(BaseController):
mt.add_cmd("about")
mt.add_cmd("support")
mt.add_cmd("survey")
- if not is_installer():
- mt.add_cmd("update")
mt.add_cmd("wiki")
mt.add_cmd("news")
mt.add_raw("\n")
@@ -472,16 +468,6 @@ class TerminalController(BaseController):
"""Process survey command."""
webbrowser.open("https://openbb.co/survey")
- def call_update(self, _):
- """Process update command."""
- if not is_installer():
- self.update_success = not update_terminal()
- else:
- console.print(
- "Find the most recent release of the OpenBB Terminal here: "
- "https://openbb.co/products/terminal#get-started\n"
- )
-
def call_account(self, _):
"""Process account command."""
from openbb_terminal.account.account_controller import AccountController