From d9292c513a071eb540030068fb4f7c3a8808e300 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Wed, 11 May 2022 09:50:00 -0600 Subject: [PATCH] utilities.py: Remove unneeded print --- resources/utilities.py | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/utilities.py b/resources/utilities.py index dbb755a80..8cb7a78ff 100644 --- a/resources/utilities.py +++ b/resources/utilities.py @@ -485,7 +485,6 @@ def clean_device_path(device_path: str): if len(device_path_array) >= 2: device_path_stripped = device_path_array[-2] device_path_root_array = device_path_stripped.split(",") - print(device_path_root_array) if len(device_path_root_array) >= 2: return device_path_root_array[2] return None