Skip to content

Commit

Permalink
fixing linting
Browse files Browse the repository at this point in the history
  • Loading branch information
pierreln-dd committed Jan 3, 2024
1 parent b9233ec commit 9952dee
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions datadog/dogshell/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ def setup_parser(cls, subparsers):
"--message", help="message to include with notifications" " for this monitor", default=None
)
post_parser.add_argument(
"--restricted_roles", help="comma-separated list of unique role identifiers allowed to edit the monitor", default=None
"--restricted_roles", help="comma-separated list of unique role identifiers allowed to edit the monitor",
default=None
)
post_parser.add_argument("--tags", help="comma-separated list of tags", default=None)
post_parser.add_argument(
Expand Down Expand Up @@ -78,7 +79,8 @@ def setup_parser(cls, subparsers):
)
update_parser.add_argument("--name", help="name of the alert", default=None)
update_parser.add_argument(
"--restricted_roles", help="comma-separated list of unique role identifiers allowed to edit the monitor", default=None
"--restricted_roles", help="comma-separated list of unique role identifiers allowed to edit the monitor",
default=None
)
update_parser.add_argument("--tags", help="comma-separated list of tags", default=None)
update_parser.add_argument(
Expand Down Expand Up @@ -158,7 +160,8 @@ def setup_parser(cls, subparsers):
"--message", help="message to include with notifications" " for this monitor", default=None
)
validate_parser.add_argument(
"--restricted_roles", help="comma-separated list of unique role identifiers allowed to edit the monitor", default=None
"--restricted_roles", help="comma-separated list of unique role identifiers allowed to edit the monitor",
default=None
)
validate_parser.add_argument("--tags", help="comma-separated list of tags", default=None)
validate_parser.add_argument("--options", help="json options for the monitor", default=None)
Expand Down

0 comments on commit 9952dee

Please sign in to comment.