mik-laj commented on a change in pull request #7834: [WIP]Enable super init not
called check in pylint
URL: https://github.com/apache/airflow/pull/7834#discussion_r398187337
##########
File path: airflow/utils/log/logging_mixin.py
##########
@@ -126,6 +126,8 @@ class RedirectStdHandler(StreamHandler):
sys.stderr/stdout at handler construction time.
"""
def __init__(self, stream):
+ # StreamHandler tries to set self.stream
+ super().__init__(stream)
Review comment:
This is a change that causes a change in behavior.
----------------------------------------------------------------
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]
With regards,
Apache Git Services