Skip to content

Commit 392df1a

Browse files
committed
refactor(cli/cache): 🎨 drop Status column from cache list table
1 parent b6873fa commit 392df1a

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

rocrate_validator/cli/commands/cache.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ def cache_list(
175175

176176
table = Table(title=f"HTTP Cache entries ({len(entries)})", show_lines=False)
177177
table.add_column("URL", overflow="fold")
178-
table.add_column("Status", justify="right")
179178
table.add_column("Size", justify="right")
180179
table.add_column("Content-Type")
181180
table.add_column("Created")
@@ -185,7 +184,6 @@ def cache_list(
185184
total += e["size"]
186185
table.add_row(
187186
e["url"],
188-
str(e["status"] if e["status"] is not None else "—"),
189187
_format_bytes(e["size"]),
190188
e["content_type"] or "—",
191189
_format_dt(e["created_at"]),

0 commit comments

Comments
 (0)