Skip to content

Commit

Permalink
Fixed --dry-run flag is in weather-mv ee tool
Browse files Browse the repository at this point in the history
  • Loading branch information
shail-parekh committed Jan 27, 2025
1 parent d8421e0 commit f054065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weather_mv/loader_pipeline/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def pipeline(known_args: argparse.Namespace, pipeline_args: t.List[str]) -> None
# all_args stores all arguments passed to the pipeline.
# This is necessary because pipeline_args are later used by
# the CreateTimeSeries DoFn in the AddMetrics transform.
all_args = {**vars(known_args), **pipeline_options_dict}
all_args = {**pipeline_options_dict, **vars(known_args)}
paths | "MoveToEarthEngine" >> ToEarthEngine.from_kwargs(**all_args)
else:
raise ValueError('invalid subcommand!')
Expand Down

0 comments on commit f054065

Please sign in to comment.