From 5449564318f7c54d7c5f209a238004e43f1fa842 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 20 May 2023 06:37:16 +0000 Subject: [PATCH] Remove debugging output. --- matcher/api.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/matcher/api.py b/matcher/api.py index b81e9f1..b38b6e8 100644 --- a/matcher/api.py +++ b/matcher/api.py @@ -550,7 +550,6 @@ def get_tag_filter( tags: sqlalchemy.sql.schema.Column, tag_list: list[str] ) -> list[sqlalchemy.sql.elements.BooleanClauseList]: tag_filter = [] - print("tags type:", type(tags)) for tag_or_key in tag_list: if tag_or_key.startswith("Key:"): key = tag_or_key[4:] @@ -564,7 +563,6 @@ def get_tag_filter( for prefix in tag_prefixes: tag_filter.append(tags[f"{prefix}:{k}"] == v) - print("tag_filter type:", [type(i) for i in tag_filter]) return tag_filter