From 5b50b8144bfe64ea3448b87b08d8f8a3fa0ec627 Mon Sep 17 00:00:00 2001 From: Sebastian Goscik Date: Mon, 16 Jan 2023 12:41:57 +0000 Subject: [PATCH] remove stray print --- unifi_protect_backup/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/unifi_protect_backup/utils.py b/unifi_protect_backup/utils.py index b6302f4..5b3dda5 100644 --- a/unifi_protect_backup/utils.py +++ b/unifi_protect_backup/utils.py @@ -202,7 +202,6 @@ def human_readable_size(num: float): def human_readable_to_float(num: str): pattern = r"([\d.]+)(" + "|".join(_suffixes) + ")" - print(pattern) result = re.match(pattern, num) if result is None: raise ValueError(f"Value '{num}' is not a valid ISO/IEC 80000 binary value")