From 393be0fecd2ad0176132957015792d966769fd51 Mon Sep 17 00:00:00 2001 From: bee-san Date: Mon, 19 Apr 2021 09:39:39 +0100 Subject: [PATCH] Removing print statement; --- name_that_hash/prettifier.py | 1 - pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/name_that_hash/prettifier.py b/name_that_hash/prettifier.py index 5cd55d6..9f92b2c 100644 --- a/name_that_hash/prettifier.py +++ b/name_that_hash/prettifier.py @@ -33,7 +33,6 @@ def greppable_output(self, objs: List): return json.dumps(self.turn_hash_objs_into_dict(objs), indent=2) def turn_hash_objs_into_dict(self, objs: List): - print(f"objs is {objs}") outputs_as_dict = {} for y in objs: diff --git a/pyproject.toml b/pyproject.toml index 989cc78..9c87929 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "name-that-hash" -version = "1.7.0" +version = "1.7.1" description = "The Modern Hash Identifcation System" authors = ["brandon "] license = "GPL-3.0-or-later"