amoghrajesh commented on code in PR #51873:
URL: https://github.com/apache/airflow/pull/51873#discussion_r2176960173


##########
providers/alibaba/src/airflow/providers/alibaba/cloud/hooks/oss.py:
##########
@@ -93,7 +97,7 @@ def __init__(self, region: str | None = None, 
oss_conn_id="oss_default", *args,
 
     def get_conn(self) -> Connection:
         """Return connection for the hook."""
-        return self.oss_conn
+        return self.oss_conn  # type: ignore[return-value]

Review Comment:
   Handled it in cdf68858217b85aeb1b51df304dbdd73e0e3b7a3



##########
providers/amazon/src/airflow/providers/amazon/aws/hooks/athena_sql.py:
##########
@@ -127,7 +127,10 @@ def conn_config(self) -> AwsConnectionWrapper:
                 )
 
         return AwsConnectionWrapper(
-            conn=connection, region_name=self._region_name, 
botocore_config=self._config, verify=self._verify
+            conn=connection,  # type: ignore[arg-type]

Review Comment:
   Handled in cdf68858217b85aeb1b51df304dbdd73e0e3b7a3



-- 
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]

Reply via email to