Skip to content

Commit

Permalink
removing description from Parameter on flows.py
Browse files Browse the repository at this point in the history
  • Loading branch information
patriciacatandi committed Oct 16, 2024
1 parent 87fe56c commit b6e0165
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pipelines/precipitation_model/impa/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@
"start_datetime",
default=None,
required=False,
description="Datetime in YYYY-MM-dd HH:mm:ss format, UTC timezone",
#description="Datetime in YYYY-MM-dd HH:mm:ss format, UTC timezone",
)
num_workers = Parameter(
"num_workers",
default=8,
required=False,
description="Number of workers to use for parallel processing",
#description="Number of workers to use for parallel processing",
)
cuda = Parameter("cuda", default=False, required=False, description="Use CUDA for prediction")
cuda = Parameter("cuda", default=False, required=False) #, description="Use CUDA for prediction"

# Parameters for saving data on GCP
materialize_after_dump = Parameter("materialize_after_dump", default=False, required=False)
Expand Down

0 comments on commit b6e0165

Please sign in to comment.