From 84054c2160766e1b8d8a4c44543ee95e251555b6 Mon Sep 17 00:00:00 2001 From: GeoHaber <11169518+GeoHaber@users.noreply.github.com> Date: Sun, 1 Sep 2024 14:34:07 -0400 Subject: [PATCH] Cosmetic change Just a cosmetic change --- My_Utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/My_Utils.py b/My_Utils.py index e018c9f..1d267b2 100644 --- a/My_Utils.py +++ b/My_Utils.py @@ -441,10 +441,10 @@ def hm_sz(numb: Union[str, int, float], type: str = "B") -> str: for unit in units: if numb < 1024.0: - return f"{sign}{numb:.2f}{unit}" + return f"{sign}{numb:.2f} {unit}" numb /= 1024.0 - return f"{sign}{numb:.2f}{units[-1]}" + return f"{sign}{numb:.2f} {units[-1]}" ##==============------------------- End -------------------==============## def hm_time(timez: float) -> str: