Skip to content

Commit

Permalink
fix partial printing of documentation dfs
Browse files Browse the repository at this point in the history
  • Loading branch information
jimdale committed Apr 23, 2024
1 parent d290329 commit fbade64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "viewser"
version = "6.4.0"
version = "6.4.1"
description = "The Views 3 CLI tool"
authors = ["peder2911 <pglandsverk@gmail.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion viewser/commands/documentation/cli.py
Expand Up @@ -48,7 +48,7 @@ def list_features(obj: Dict[str, Any], loa: str):

response_df = pd.DataFrame({'feature': features, 'loa hint': loas})

click.echo(response_df)
print(response_df)


@click.group(name="transforms")
Expand Down
2 changes: 1 addition & 1 deletion viewser/commands/queryset/cli.py
Expand Up @@ -48,7 +48,7 @@ def queryset_list(ctx_obj: Dict[str, Any]):
"""
result_df = pd.DataFrame(ctx_obj["operations"].list(), columns=['querysets', ])

click.echo(result_df)
print(result_df)


@cli.command(name="show", short_help="show code for a queryset")
Expand Down

0 comments on commit fbade64

Please sign in to comment.