fmartingr
/
jeeves
Archived
1
0
Fork 0

Argument.default is now optional

This commit is contained in:
Felipe Martin 2020-04-29 21:02:13 +02:00
parent f3b5235658
commit 135b1bc220
Signed by: fmartingr
GPG Key ID: 716BC147715E716F
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class Task(BaseObject):
class Argument(BaseObject): class Argument(BaseObject):
name: Text name: Text
default: Any default: Optional[Any] = None
type: Text = "text" type: Text = "text"
required: bool = False required: bool = False