Skip to content

Commit

Permalink
Remove ClassVar annotations. (#36084)
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Dardzinski <kuba0221@gmail.com>
  • Loading branch information
JDarDagran authored Dec 6, 2023
1 parent d2514b4 commit fba682b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/providers/openlineage/plugins/facets.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class AirflowMappedTaskRunFacet(BaseFacet):
mapIndex: int
operatorClass: str

_additional_skip_redact: list[str] = ["operatorClass"]
_additional_skip_redact = ["operatorClass"]

@classmethod
def from_task_instance(cls, task_instance):
Expand Down Expand Up @@ -63,7 +63,7 @@ class UnknownOperatorInstance(RedactMixin):
properties: dict[str, object]
type: str = "operator"

_skip_redact: list[str] = ["name", "type"]
_skip_redact = ["name", "type"]


@define(slots=False)
Expand Down

0 comments on commit fba682b

Please sign in to comment.