Skip to content
Snippets Groups Projects

Fix: don't use colalign in tabulate

Merged Slavina Stefanova requested to merge slavina/fix-tabulate-issue into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -413,7 +413,7 @@ def build_quota(json) -> None:
click.echo(f"{category['name']}")
click.echo("===================")
click.echo(tabulate(data, tablefmt="plain", colalign=("left", "right")))
click.echo(tabulate(data, tablefmt="plain"))
@toolforge_build.command(name="_commands", hidden=True)