Skip to content
Snippets Groups Projects

Improve help message response for CLI

@@ -86,8 +86,8 @@ def hivize(
write_metadata: bool = True,
**kwargs
) -> None:
parquet_path = as_path(parquet_path)
hive_path = as_path(hive_path)
parquet_path = as_path(parquet_path).resolve()
hive_path = as_path(hive_path).resolve()
if staging_path is None:
rand_str = ''.join(random.choices(string.ascii_letters + string.digits, k=8))
Loading