This commit is contained in:
2026-01-18 10:50:42 -08:00
parent 66132811e0
commit 66e6c6eb72
34 changed files with 718 additions and 516 deletions

View File

@@ -191,10 +191,10 @@ class HTTPClient:
if not is_debug_enabled():
return
try:
from rich.table import Table
from rich.table import Table as RichTable
from rich.panel import Panel
grid = Table.grid(padding=(0, 1))
grid = RichTable.grid(padding=(0, 1))
grid.add_column("Key", style="cyan", no_wrap=True)
grid.add_column("Value")
for key, val in rows: