Skip to content

Commit

Permalink
[AIRFLOW-2092] Fixed incorrect parameter in docstring for FTPHook
Browse files Browse the repository at this point in the history
Fixed the datatype of parameter
`local_full_path_or_buffer` in `retrieve_file`
method for FTPHook

Closes #3026 from kaxil/patch-2
  • Loading branch information
kaxil authored and Fokko Driesprong committed Feb 9, 2018
1 parent a1e5a07 commit bf1296f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/contrib/hooks/ftp_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def retrieve_file(self, remote_full_path, local_full_path_or_buffer):
:type remote_full_path: str
:param local_full_path_or_buffer: full path to the local file or a
file-like buffer
:type local_full_path: str or file-like buffer
:type local_full_path_or_buffer: str or file-like buffer
"""
conn = self.get_conn()

Expand Down

0 comments on commit bf1296f

Please sign in to comment.