Formatting.
This commit is contained in:
parent
35d542a676
commit
3aaa89fb08
3 changed files with 9 additions and 3 deletions
|
@ -41,7 +41,9 @@ def ping_monitor(ping_url, config_filename, state, monitoring_log_level, dry_run
|
||||||
requests.get(ping_url)
|
requests.get(ping_url)
|
||||||
|
|
||||||
|
|
||||||
def destroy_monitor(ping_url_or_uuid, config_filename, monitoring_log_level, dry_run): # pragma: no cover
|
def destroy_monitor(
|
||||||
|
ping_url_or_uuid, config_filename, monitoring_log_level, dry_run
|
||||||
|
): # pragma: no cover
|
||||||
'''
|
'''
|
||||||
No destruction is necessary for this monitor.
|
No destruction is necessary for this monitor.
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -40,7 +40,9 @@ def ping_monitor(ping_url, config_filename, state, monitoring_log_level, dry_run
|
||||||
requests.get(ping_url)
|
requests.get(ping_url)
|
||||||
|
|
||||||
|
|
||||||
def destroy_monitor(ping_url_or_uuid, config_filename, monitoring_log_level, dry_run): # pragma: no cover
|
def destroy_monitor(
|
||||||
|
ping_url_or_uuid, config_filename, monitoring_log_level, dry_run
|
||||||
|
): # pragma: no cover
|
||||||
'''
|
'''
|
||||||
No destruction is necessary for this monitor.
|
No destruction is necessary for this monitor.
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -71,7 +71,9 @@ def ping_monitor(integration_key, config_filename, state, monitoring_log_level,
|
||||||
requests.post(EVENTS_API_URL, data=payload.encode('utf-8'))
|
requests.post(EVENTS_API_URL, data=payload.encode('utf-8'))
|
||||||
|
|
||||||
|
|
||||||
def destroy_monitor(ping_url_or_uuid, config_filename, monitoring_log_level, dry_run): # pragma: no cover
|
def destroy_monitor(
|
||||||
|
ping_url_or_uuid, config_filename, monitoring_log_level, dry_run
|
||||||
|
): # pragma: no cover
|
||||||
'''
|
'''
|
||||||
No destruction is necessary for this monitor.
|
No destruction is necessary for this monitor.
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue