summaryrefslogtreecommitdiff
path: root/service/pixelated/adapter/tag_service.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/pixelated/adapter/tag_service.py')
-rw-r--r--service/pixelated/adapter/tag_service.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/service/pixelated/adapter/tag_service.py b/service/pixelated/adapter/tag_service.py
index fa70231e..54b88622 100644
--- a/service/pixelated/adapter/tag_service.py
+++ b/service/pixelated/adapter/tag_service.py
@@ -14,7 +14,6 @@
# You should have received a copy of the GNU Affero General Public License
# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
from pixelated.adapter.tag import Tag
-from pixelated.adapter.tag_index import TagIndex
class TagService:
@@ -25,9 +24,3 @@ class TagService:
@classmethod
def extract_reserved(cls, tags):
return {tag.name for tag in cls.SPECIAL_TAGS if tag.name in tags}
-
- @classmethod
- def get_instance(cls):
- if not cls.instance:
- cls.instance = TagService()
- return cls.instance