jedcunningham commented on code in PR #38166:
URL: https://github.com/apache/airflow/pull/38166#discussion_r1529118757


##########
airflow/www/decorators.py:
##########
@@ -44,36 +44,36 @@ def _mask_variable_fields(extra_fields):
     Mask the 'val_content' field if 'key_content' is in the mask list.
 
     The variable requests values and args comes in this form:
-    [('key', 'key_content'),('val', 'val_content'), ('description', 
'description_content')]
+    [{'key': 'key_content'},{'val': 'val_content'}, {'description': 
'description_content'}]

Review Comment:
   ```suggestion
       {'key': 'key_content', 'val': 'val_content', 'description': 
'description_content'}
   ```
   
   Isn't this a single dict?



-- 
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]

Reply via email to