From d1297335bb52a8a717609a5ddb898b4438ca4bbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian-Samuel=20Geb=C3=BChr?= Date: Wed, 11 Jan 2023 19:34:41 +0100 Subject: [PATCH] Remove unnecessary print statement --- cli.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cli.py b/cli.py index 4109dd6..260c6cf 100644 --- a/cli.py +++ b/cli.py @@ -16,8 +16,6 @@ def load_local_blocklist(filename: str) -> [Instance]: for instance_dict in data["instances"]: instance = Instance(instance_dict) instances.append(instance) - for instance in instances: - print(instance) return instances