From ecd6854975a20577e932b21394efd189ce65a918 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Tue, 25 Jan 2022 18:17:23 -0300 Subject: [PATCH] Remove extraneous debug print --- biostools/analyzers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/biostools/analyzers.py b/biostools/analyzers.py index b3e0cde..5141d69 100644 --- a/biostools/analyzers.py +++ b/biostools/analyzers.py @@ -1121,7 +1121,6 @@ class BonusAnalyzer(Analyzer): if device_id != b'\x00\x00\x00\x00' or vendor or device: # Add PnP ID (endianness swapped to help the front-end in # processing it), vendor name and device name to the list. - print(device_id) self.oroms.append((struct.unpack('>I', device_id)[0], vendor, device)) # This analyzer should never return True.