From 21c23cf9449b92ad5c1bb57089f164f5b1c393eb Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Thu, 19 Dec 2019 13:42:17 -0500 Subject: [PATCH] curds: Remove unused tags/ directory I'm honestly surprised that this is still here Signed-off-by: Anna Schumaker --- curds/tags/tag.py | 5 ----- curds/tags/test_tag.py | 7 ------- 2 files changed, 12 deletions(-) delete mode 100644 curds/tags/tag.py delete mode 100644 curds/tags/test_tag.py diff --git a/curds/tags/tag.py b/curds/tags/tag.py deleted file mode 100644 index 799b18a..0000000 --- a/curds/tags/tag.py +++ /dev/null @@ -1,5 +0,0 @@ -# Copyright 2019 (c) Anna Schumaker. - -class Tag: - def extract(info, key, default): - pass diff --git a/curds/tags/test_tag.py b/curds/tags/test_tag.py deleted file mode 100644 index b219008..0000000 --- a/curds/tags/test_tag.py +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright 2019 (c) Anna Schumaker. -from . import tag -import unittest - -class TestTag(unittest.TestCase): - def test_tag_extract(self): - t = tag.Tag()