Skip to content

Commit 03fcbcc

Browse files
authored
Use set for template_fields of EcsDeregisterTaskDefinitionOperator (#33129)
1 parent 60677b0 commit 03fcbcc

File tree

1 file changed

+1
-1
lines changed
  • airflow/providers/amazon/aws/operators

1 file changed

+1
-1
lines changed

airflow/providers/amazon/aws/operators/ecs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ class EcsDeregisterTaskDefinitionOperator(EcsBaseOperator):
259259
of the task definition to deregister. If you use a family name, you must specify a revision.
260260
"""
261261

262-
template_fields: Sequence[str] = "task_definition"
262+
template_fields: Sequence[str] = ("task_definition",)
263263

264264
def __init__(
265265
self,

0 commit comments

Comments
 (0)