Taragolis commented on code in PR #34784:
URL: https://github.com/apache/airflow/pull/34784#discussion_r1347948429
##########
airflow/providers/amazon/aws/sensors/base_aws.py:
##########
@@ -0,0 +1,145 @@
+# Licensed to the Apache Software Foundation (ASF) under one
Review Comment:
This might works
```python
class AwsBaseSensor(AwsBaseOperator, BaseSensorOperator)
...
```
However we would step into
[MRO](https://www.python.org/download/releases/2.3/mro/) field, if we do
something wrong and forget about some important thing, it might easily cause an
issue in multiple sensor eventually.
--
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]