mik-laj commented on a change in pull request #4770: [AIRFLOW-3948] GCSToBQOperator list as templating field issue URL: https://github.com/apache/airflow/pull/4770#discussion_r260079130
########## File path: airflow/contrib/operators/gcs_to_bq.py ########## @@ -24,6 +24,11 @@ from airflow.models import BaseOperator from airflow.utils.decorators import apply_defaults +try: + basestring Review comment: Is there any reason why you have not used the `six` package here? Using this package makes it easier to track where we have the code for the older version of Python. We plan to drop support for the older version, so we will simply delete all references to the `six` package. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on 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
