mirror of https://github.com/zulip/zulip.git
check_cron_file: Remove unnecessary quotes.
This commit is contained in:
parent
41b7ae4e44
commit
b2d0bad9af
|
@ -7,7 +7,7 @@ import time
|
|||
from typing import Tuple
|
||||
|
||||
|
||||
def nagios_from_file(results_file: str, max_time_diff: int = 60 * 2) -> "Tuple[int, str]":
|
||||
def nagios_from_file(results_file: str, max_time_diff: int = 60 * 2) -> Tuple[int, str]:
|
||||
"""Returns a nagios-appropriate string and return code obtained by
|
||||
parsing the desired file on disk. The file on disk should be of format
|
||||
|
||||
|
|
Loading…
Reference in New Issue