eladkal commented on code in PR #56270:
URL: https://github.com/apache/airflow/pull/56270#discussion_r2392854692
##########
task-sdk/src/airflow/sdk/io/path.py:
##########
@@ -294,7 +294,7 @@ def _cp_file(self, dst: ObjectStoragePath, **kwargs):
# make use of system dependent buffer size
shutil.copyfileobj(f1, f2, **kwargs)
- def copy(self, dst: str | ObjectStoragePath, recursive: bool = False,
**kwargs) -> None:
+ def copy(self, dst: str | ObjectStoragePath, recursive: bool = False,
**kwargs) -> None: # type: ignore[override]
Review Comment:
we normally don't use ignores unless absolutely necessary as ignores don't
really fix stuff but just hide the issue.
isn't there a way to fix without ignore?
--
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]