From de95bcb087158dea67b97b751104cc81a639414e Mon Sep 17 00:00:00 2001 From: Sergey Krashevich Date: Sun, 2 Jul 2023 00:35:39 +0300 Subject: [PATCH] remove unnecessary print statements in util.py --- frigate/util.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frigate/util.py b/frigate/util.py index e0d890134..9bb816732 100755 --- a/frigate/util.py +++ b/frigate/util.py @@ -1247,10 +1247,9 @@ def update_yaml_file(file_path, key_path, new_value): if key not in temp: temp[key] = {} temp = temp[key] - print(new_value) + last_key = key_path[-1] if new_value == "": - print(last_key) if isinstance(last_key, tuple): del temp[last_key[0]][last_key[1]] else: