fixup! Extended type annotations
This commit is contained in:
parent
fde2556e47
commit
e1d2ed9990
1 changed files with 3 additions and 2 deletions
|
@ -92,7 +92,8 @@ def httping(targets: List[str]) -> Tuple[Dict[str, Optional[float]], Optional[fl
|
|||
if __name__ == "__main__":
|
||||
responses, median, stddev = httping(TARGETS)
|
||||
if isinstance(median, float) and median != MAX_PING_IN_MS:
|
||||
print("⦿ " + str(round(median, 2)) + "±" + str(round(stddev, 2)) + " | color=" + CURRENT_THEME.colorize(median)) # type: ignore
|
||||
print("⦿ " + str(round(median, 2)) + "±" + str(round(stddev, 2)) + " | color=" +
|
||||
CURRENT_THEME.colorize(median)) # type: ignore
|
||||
else:
|
||||
print("☠ | color=" + CURRENT_THEME.selected_colors[0])
|
||||
print("---")
|
||||
|
|
Loading…
Reference in a new issue