ashb commented on issue #9840: URL: https://github.com/apache/airflow/issues/9840#issuecomment-735291406
> It seems that you are not using super correctly. Can you change the way you are using it? > Change this > ` super(DevMultiplyoperator, self).__init__( * args, ** kwargs)` > to > ` super().__init__( * args, ** kwargs)` @ephraimbuddy That is Python2 vs Python3 syntax. Airflow code base has switched to the later, but the former will still work on Python3 without trouble, so it's not that. @aladinoss How were you trying to import this? What error did you receive when you did so? ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
