fix help command output docstrings and more CLI log coloring

This commit is contained in:
Nick Sweeting
2024-09-30 18:29:17 -07:00
parent 7489663ff3
commit 31ce490321
4 changed files with 21 additions and 13 deletions

View File

@@ -45,7 +45,9 @@ class ShellConfig(BaseConfigSet):
@computed_field
@property
def TERM_WIDTH(self) -> int:
return shutil.get_terminal_size((100, 10)).columns
if not self.IS_TTY:
return 200
return shutil.get_terminal_size((140, 10)).columns
@computed_field
@property