Taragolis commented on code in PR #36084:
URL: https://github.com/apache/airflow/pull/36084#discussion_r1417097596


##########
airflow/providers/openlineage/plugins/facets.py:
##########
@@ -28,7 +30,7 @@ class AirflowMappedTaskRunFacet(BaseFacet):
     mapIndex: int
     operatorClass: str
 
-    _additional_skip_redact: list[str] = ["operatorClass"]
+    _additional_skip_redact: ClassVar[list[str]] = ["operatorClass"]

Review Comment:
   ```suggestion
       _additional_skip_redact = ["operatorClass"]
   ```
   



##########
airflow/providers/openlineage/plugins/facets.py:
##########
@@ -63,7 +65,7 @@ class UnknownOperatorInstance(RedactMixin):
     properties: dict[str, object]
     type: str = "operator"
 
-    _skip_redact: list[str] = ["name", "type"]
+    _skip_redact: ClassVar[list[str]] = ["name", "type"]

Review Comment:
   ```suggestion
       _skip_redact = ["name", "type"]
   ```



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