jordanjeremy opened a new issue #16976: URL: https://github.com/apache/airflow/issues/16976
**Apache Airflow version**: 2.1.1 **What happened**: The rendered templates screen doesn't show the operator arguments for TaskFlow API operators.  **What you expected to happen**: Should show the arguments after any templates have been rendered. **How to reproduce it**: Will happen for any @task decorated operator. **Anything else we need to know**: This issue appears on a number of operators. Possible solution is to modify the "get_python_source" in utils/code_utils.py to handle list and dict. Possibly something like: ``` if isinstance(x, list): return [str(v) for v in x] if isinstance(x, dict): return {k: str(v) for k, v in x.items()} ``` The converting values to strings seems necessary in order to avoid errors when this is passed to the pygments lexer.  -- 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]
