Skip to content

Commit 3d09173

Browse files
committed
updated readme
1 parent f31c789 commit 3d09173

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

functions-python/tasks_executor/src/tasks/dataset_files/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Rebuild Missing Dataset Files
22

33
This task rebuilds missing extracted files in GTFS datasets.
4-
It downloads datasets from their `hosted_url`, extracts all `.txt` files, computes zipped and unzipped sizes, calculates hashes, uploads the files to a GCS bucket, and updates the database.
4+
It downloads datasets from their `hosted_url`, extracts all files, computes zipped and unzipped sizes, calculates hashes, uploads the files to a GCS bucket, and updates the database.
55

66
---
77

functions-python/tasks_executor/src/tasks/dataset_files/rebuild_missing_dataset_files.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ def rebuild_missing_dataset_files_handler(payload) -> dict:
3131
latest_only = payload.get("latest_only", True)
3232

3333
return rebuild_missing_dataset_files(
34-
dry_run=dry_run,
35-
after_date=after_date,
36-
latest_only=latest_only
34+
dry_run=dry_run, after_date=after_date, latest_only=latest_only
3735
)
3836

3937

0 commit comments

Comments
 (0)