Taragolis commented on code in PR #28923:
URL: https://github.com/apache/airflow/pull/28923#discussion_r1070555342
##########
airflow/providers/samba/hooks/samba.py:
##########
@@ -135,6 +135,9 @@ def open_file(
file_type=file_type,
**self._conn_kwargs,
)
+ @wraps(smbclient.copyfile)
+ def copyfile(self, src, dst):
+ return smbclient.copyfile(self.__join_path(src),
self.__join_path(dst), **self._conn_kwargs)
Review Comment:
```suggestion
return smbclient.copyfile(self._join_path(src),
self._join_path(dst), **self._conn_kwargs)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]