Skip to content

Commit

Permalink
Fix Task serializer
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Jul 11, 2024
1 parent f61aa7f commit 29bd482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/src/backend/serializers/TaskSerializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class TaskSerializer:
@staticmethod
def serialize(model):
base = BaseTaskSerializer(model)
base = BaseTaskSerializer.serialize(model)

if model.type == TASK_TYPE_FUNCTION:
return FunctionTaskSerializer.serialize(model, base=base)
Expand Down

0 comments on commit 29bd482

Please sign in to comment.