From da7de5276ba7edd8b9a5644d55fd60c6308cae82 Mon Sep 17 00:00:00 2001 From: "Mathias V. Nielsen" <1547127+math280h@users.noreply.github.com> Date: Sat, 10 Dec 2022 01:12:51 -0500 Subject: [PATCH] Hotfix: Remove print --- redactdump/core/database.py | 1 - 1 file changed, 1 deletion(-) diff --git a/redactdump/core/database.py b/redactdump/core/database.py index 168d2df..c66e4fc 100644 --- a/redactdump/core/database.py +++ b/redactdump/core/database.py @@ -127,7 +127,6 @@ def get_data(self, table: str, rows: list, offset: int, limit: int) -> list: ) records = [dict(zip(row.keys(), row)) for row in result] for item in records: - print(item) if self.redactor.data_rules or self.redactor.column_rules: item = self.redactor.redact(item, rows)