From cb59b1b971a56a84c4cb10b942870fee5974d1e1 Mon Sep 17 00:00:00 2001 From: SavingFrame Date: Fri, 29 Dec 2023 13:08:43 +0100 Subject: [PATCH] Delete print --- iso18245/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/iso18245/__init__.py b/iso18245/__init__.py index 4a74b53..10804aa 100644 --- a/iso18245/__init__.py +++ b/iso18245/__init__.py @@ -50,7 +50,6 @@ def _load_csv(path: str) -> List[List[str]]: def _find_mcc_in_csv(mcc: str, path: str) -> List[str]: for row in _load_csv(path): - print(row) if row[0] == mcc: return row[1:] return []