phi-friday commented on code in PR #41039:
URL: https://github.com/apache/airflow/pull/41039#discussion_r1702467068


##########
airflow/utils/python_virtualenv.py:
##########
@@ -149,3 +157,74 @@ def write_python_script(
         )
     template = template_env.get_template("python_virtualenv_script.jinja2")
     template.stream(**jinja_context).dump(filename)
+
+
+def context_to_json(context: Context) -> str:
+    from airflow.models.param import ParamsDict
+    from airflow.models.taskinstance import SimpleTaskInstance
+    from airflow.serialization.serialized_objects import 
SerializedBaseOperator, SerializedDAG
+    from airflow.utils.context import Context
+
+    context_copy: dict[str, Any] = {}

Review Comment:
   I had used it before, but had forgotten that I hadn't cleared it. I've fixed 
it, thanks.



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