updated parserhuge refactor of plugin system

This commit is contained in:
2026-04-30 19:24:29 -07:00
parent be5a11da97
commit b7d3dc5f2d
2 changed files with 294 additions and 6 deletions
+5
View File
@@ -165,6 +165,11 @@ def _render_table(table: Any) -> int:
log("No active result table", file=sys.stderr)
return 1
try:
setattr(table, "_rendered_by_cmdlet", True)
except Exception:
pass
try:
if hasattr(table, "to_rich"):
stdout_console().print(table.to_rich())