Skip to content

Commit

Permalink
Merge pull request #23 from opensourceworks-org/fix/types
Browse files Browse the repository at this point in the history
chore: add missing types
  • Loading branch information
jeroenflvr authored Jul 23, 2024
2 parents fb4a3c8 + 213d671 commit 3cecca8
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 31 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="https://github.com/opensourceworks-org/deltalake-tools/blob/doc/readme/img/deltalake-tools-lg.png?raw=true" alt="deltalake-tools logo" height="200">
<img src="https://github.com/opensourceworks-org/deltalake-tools/blob/main/img/deltalake-tools-lg.png?raw=true" alt="deltalake-tools logo" height="200">
</p>

<p align="center">
Expand Down
1 change: 0 additions & 1 deletion img/delta-rust.svg

This file was deleted.

27 changes: 0 additions & 27 deletions img/delta-tools.svg

This file was deleted.

Binary file removed img/deltalake-tools.png
Binary file not shown.
Binary file removed img/deltalake-tools.webp
Binary file not shown.
4 changes: 2 additions & 2 deletions src/deltalake_tools/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

@click.group(context_settings=CONTEXT_SETTINGS)
@click.version_option(version=version)
def cli():
def cli() -> None:
pass


Expand Down Expand Up @@ -65,7 +65,7 @@ def vacuum(
disable_retention_duration: bool = False,
force: bool = False,
**kwargs,
):
) -> None:
client_details = parse_cli_kwargs(delta_table_path, **kwargs)
result = delta_vacuum(
delta_table_path,
Expand Down

0 comments on commit 3cecca8

Please sign in to comment.