kaxil commented on code in PR #35200:
URL: https://github.com/apache/airflow/pull/35200#discussion_r1382630630


##########
airflow/providers/google/cloud/operators/bigquery.py:
##########
@@ -2788,6 +2788,8 @@ def execute(self, context: Any):
             impersonation_chain=self.impersonation_chain,
         )
         self.hook = hook
+        if self.project_id is None:
+            self.project_id = hook.project_id

Review Comment:
   to be consistent with L2852, although either is fine
   ```suggestion
           self.project_id = self.project_id or self.hook.project_id
   ```



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to