You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/04/24 07:53:53 UTC

[GitHub] [airflow] turbaszek commented on a change in pull request #15510: OdbcHook returns None. Related to #15016 issue.

turbaszek commented on a change in pull request #15510:
URL: https://github.com/apache/airflow/pull/15510#discussion_r619606736



##########
File path: airflow/providers/odbc/hooks/odbc.py
##########
@@ -171,6 +171,8 @@ def clean_bool(val):  # pylint: disable=inconsistent-return-statements
                     return True
                 elif val.lower() == 'false':
                     return False
+                else:
+                    return val

Review comment:
       With this change we may be able to remove the pylint comment from L168, WDYT?




-- 
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:
users@infra.apache.org