We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f34fa4 commit 782a2c6Copy full SHA for 782a2c6
examples/github_forks/github_forks.py
@@ -50,6 +50,7 @@ def get_scheme(self):
50
scheme.use_single_instance = True
51
52
owner_argument = Argument("owner")
53
+ owner_argument.title = "Owner"
54
owner_argument.data_type = Argument.data_type_string
55
owner_argument.description = "Github user or organization that created the repository."
56
owner_argument.required_on_create = True
@@ -59,6 +60,7 @@ def get_scheme(self):
59
60
scheme.add_argument(owner_argument)
61
62
repo_name_argument = Argument("repo_name")
63
+ repo_name_argument.title = "Repo Name"
64
repo_name_argument.data_type = Argument.data_type_string
65
repo_name_argument.description = "Name of the Github repository."
66
repo_name_argument.required_on_create = True
0 commit comments