Format python
This commit is contained in:
parent
85f5770e09
commit
4c258018c3
17 changed files with 348 additions and 248 deletions
|
|
@ -41,8 +41,12 @@ def convert_to_parquet(xlsx_path: Path, parquet_path: Path) -> None:
|
|||
|
||||
|
||||
def main() -> None:
|
||||
parser = argparse.ArgumentParser(description="Download and convert Index of Deprivation data")
|
||||
parser.add_argument("--output", type=Path, required=True, help="Output parquet file path")
|
||||
parser = argparse.ArgumentParser(
|
||||
description="Download and convert Index of Deprivation data"
|
||||
)
|
||||
parser.add_argument(
|
||||
"--output", type=Path, required=True, help="Output parquet file path"
|
||||
)
|
||||
args = parser.parse_args()
|
||||
|
||||
with tempfile.TemporaryDirectory() as cache_dir:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue