SFTP client: add missing docstrings
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Benjamin Renard 2022-06-30 14:36:51 +02:00
parent 54d6c6e0f3
commit e858cb3d71
1 changed files with 2 additions and 0 deletions

View File

@ -102,10 +102,12 @@ class SFTPClient(ConfigurableObject):
self.initial_directory = ""
def get_file(self, remote_filepath, local_filepath):
""" Retrieve a file from SFTP server """
log.debug("Retreive file '%s' to '%s'", remote_filepath, local_filepath)
return self.sftp_client.get(remote_filepath, local_filepath) is None
def open_file(self, remote_filepath, mode='r'):
""" Remotly open a file on SFTP server """
log.debug("Remotly open file '%s'", remote_filepath)
return self.sftp_client.open(remote_filepath, mode=mode)