From 45b9ec23ea9eb44b4042314df8ac8be66ee6890c Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Tue, 8 Oct 2019 11:44:27 +0100 Subject: [PATCH] Remove debugging output. --- depicts/human.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/depicts/human.py b/depicts/human.py index c3c76de..85f7dfe 100644 --- a/depicts/human.py +++ b/depicts/human.py @@ -19,8 +19,6 @@ def get_items_from_name(name): m = re_four_and_two.search(name) years = tuple(int(y) for y in re_four_digits.findall(name)) - print(name) - yob1, yod1 = None, None if m: century = m.group(1) @@ -30,7 +28,6 @@ def get_items_from_name(name): found += query(yob1, yod1) if len(years) == 2 and years != (yob1, yod1): - print(years) found += query(*years) return found