From a32caafb8b3febbfd683d0a22038fad1a07ba4db Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Mon, 14 Sep 2020 16:56:55 -0700 Subject: [PATCH] Remove leftover print statements. --- etiquette/photodb.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/etiquette/photodb.py b/etiquette/photodb.py index f7b3376..2eebc4b 100644 --- a/etiquette/photodb.py +++ b/etiquette/photodb.py @@ -229,13 +229,10 @@ class PDBCacheManagerMixin: function = getattr(tag_export, function) kwargs['tags'] = tuple(kwargs['tags']) key = (function.__name__,) + helpers.dict_to_tuple(kwargs) - print(key, key in self.caches['tag_exports']) try: exp = self.caches['tag_exports'][key] - print('Export was cached') return exp except KeyError: - print('Export was not cached') exp = function(**kwargs) self.caches['tag_exports'][key] = exp return exp