Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
slominskir committed Sep 29, 2020
1 parent 142b155 commit a7a995d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/shelved-alarms/set-shelved.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{
"name" : "expiration",
"type" : "long",
"logicalType" : "timestampi-millis",
"logicalType" : "timestamp-millis",
"doc" : "Timestamp when this shelved alarm should expire"
}
],
Expand All @@ -40,10 +40,10 @@
{
"name" : "reason",
"type" : "string",
"doc" : "If you are going to indefinately shelve an alarm you better be able to explain why"
"doc" : "If you are going to indefinitely shelve an alarm you better be able to explain why"
}
],
"doc" : "Alarm that is indefinately shelved"
"doc" : "Alarm that is indefinitely shelved"
}
]
}
Expand Down Expand Up @@ -88,8 +88,8 @@ def send() :

@click.command()
@click.option('--unset', is_flag=True, help="Remove the alarm")
@click.option('--expiration', type=int, help="The milliseoncds since the epoch 1970 (unix timestamp) when this temporary shelving (acknowledgement) expires, only needed if --reason not provided")
@click.option('--reason', help="The explanation for why this alarm has been indefinately shelved (disabled), only needed if --expiration is not provided")
@click.option('--expiration', type=int, help="The milliseconds since the epoch 1970 (unix timestamp) when this temporary shelving (acknowledgement) expires, only needed if --reason not provided")
@click.option('--reason', help="The explanation for why this alarm has been indefinitely shelved (disabled), only needed if --expiration is not provided")
@click.argument('name')

def cli(unset, expiration, reason, name):
Expand Down

0 comments on commit a7a995d

Please sign in to comment.