Skip to content

Commit

Permalink
Corrects order of argument in docstring in GCSHook.download method (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
VBhojawala committed Feb 27, 2021
1 parent 77f5629 commit bfef559
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/providers/google/cloud/hooks/gcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,10 @@ def download(
returns the location. For file sizes that exceed the available memory it is recommended
to write to a file.
:param bucket_name: The bucket to fetch from.
:type bucket_name: str
:param object_name: The object to fetch.
:type object_name: str
:param bucket_name: The bucket to fetch from.
:type bucket_name: str
:param filename: If set, a local file path where the file should be written to.
:type filename: str
:param chunk_size: Blob chunk size.
Expand Down

0 comments on commit bfef559

Please sign in to comment.