hughhhh commented on code in PR #20965:
URL: https://github.com/apache/superset/pull/20965#discussion_r938111286


##########
superset/models/helpers.py:
##########
@@ -1331,7 +1334,8 @@ def get_sqla_query(  # pylint: 
disable=too-many-arguments,too-many-locals,too-ma
 
         columns_by_name: Dict[str, "TableColumn"] = {
             col.get("column_name"): col
-            for col in self.columns  # col.column_name: col for col in 
self.columns
+            # col.column_name: col for col in self.columns
+            for col in self.columns

Review Comment:
   shouldn't this be `for col in self.columns:` it's missing the colon



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to