Remove bad assert

This commit is contained in:
Michael Bradley 2025-10-26 14:09:57 -04:00
parent fd7789060f
commit cf6ba50c9e
Signed by: MichaelBradley
SSH key fingerprint: SHA256:BKO2eI2LPsCbQS3n3i5SdwZTAIV3F1lHezR07qP+Ob0

View file

@ -35,7 +35,6 @@ class Status:
def format_4_significant_digits(num: float) -> str:
assert num >= 1.0, "Doesn't properly handle numbers below 1"
if num < 999:
return f"{num:04.3g}"
if num < 1000: