Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,14 @@ def add_description_param(c, help_message: str = "Description of the object."):
)


def add_display_name_param(c, help_message: str = "Display name of the object."):
c.argument(
"display_name",
options_list=["--display-name"],
help=help_message,
)


Comment on lines +108 to +115
def add_include_archived_param(c, help_message: str):
c.argument(
"include_archived",
Expand Down
Loading