We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b811eb commit 6910854Copy full SHA for 6910854
1 file changed
rogue/common/tui_installer.py
@@ -170,7 +170,15 @@ def install_rogue_tui(
170
upgrade: bool = False,
171
reinstall: bool = False,
172
) -> bool:
173
- """Install rogue-tui from GitHub releases if not already installed."""
+ """Install rogue-tui from GitHub releases if not already installed.
174
+
175
+ Args:
176
+ upgrade: Force upgrade even if already installed.
177
+ reinstall: Force reinstallation even if already installed.
178
179
+ Returns:
180
+ bool: True if installation succeeded, False otherwise.
181
+ """
182
console = Console()
183
# Check if rogue-tui is already available
184
if self._is_rogue_tui_installed() and not upgrade and not reinstall:
0 commit comments