uranusjr commented on issue #17084:
URL: https://github.com/apache/airflow/issues/17084#issuecomment-883044707
I think this can basically be fixed by changing `Resources.__eq__()` to
something like
```python
if not isintance(other, type(self)):
return False
return self.__dict__ == other.__dict__
```
The same should probably also be done for `Resource.__eq__()`. Would you be
ionterested in submitting a PR for this?
--
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]