aboutsummaryrefslogtreecommitdiff
path: root/thcolor/decoders/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'thcolor/decoders/__init__.py')
-rw-r--r--thcolor/decoders/__init__.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/thcolor/decoders/__init__.py b/thcolor/decoders/__init__.py
deleted file mode 100644
index f2d1863..0000000
--- a/thcolor/decoders/__init__.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env python3
-# *****************************************************************************
-# Copyright (C) 2019-2022 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
-# This file is part of the thcolor project, which is MIT-licensed.
-# *****************************************************************************
-""" Function and data reference. """
-
-from .base import ColorDecoder, MetaColorDecoder, alias, fallback
-from .builtin import (
- CSS1ColorDecoder, CSS2ColorDecoder, CSS3ColorDecoder,
- CSS4ColorDecoder, DefaultColorDecoder
-)
-
-__all__ = [
- 'ColorDecoder', 'CSS1ColorDecoder', 'CSS2ColorDecoder',
- 'CSS3ColorDecoder', 'CSS4ColorDecoder', 'DefaultColorDecoder',
- 'MetaColorDecoder', 'alias', 'fallback',
-]
-
-# End of file.