Skip to content

Commit

Permalink
small typos
Browse files Browse the repository at this point in the history
I think these are typos
  • Loading branch information
trucklos authored and EthanRosenthal committed Nov 15, 2022
1 parent 959001f commit df25e79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/medium_data_bakeoff/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def construct_dataset() -> None:
# Convert the dataset to parquet
csvs = list(config.CSV_PATH.iterdir())
num_partitions = len(csvs)
partition_path(num_partitions).mkdir(parnets=True, exist=True)
partition_path(num_partitions).mkdir(parents=True, exist_ok=True)
for csv in tqdm(csvs):
outfile = partition_path(num_partitions) / csv.with_suffix(".parquet").name
csv_to_parquet(csv.as_posix(), outfile.as_posix())
Expand Down

0 comments on commit df25e79

Please sign in to comment.