Skip to content

Commit

Permalink
update Task class to support callbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalpha01 committed Sep 5, 2022
1 parent a9ac295 commit 022f859
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tes/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,9 @@ class Task(Base):
description = attrib(
default=None, converter=strconv, validator=optional(instance_of(str))
)
callback_url = attrib(
default=None, converter=strconv, validator=optional(instance_of(str))
)
inputs = attrib(
default=None, validator=optional(list_of(Input))
)
Expand Down

0 comments on commit 022f859

Please sign in to comment.