summaryrefslogtreecommitdiff
path: root/lib/threads
diff options
context:
space:
mode:
authorLex Neva <lexelby@users.noreply.github.com>2021-03-28 18:11:15 -0400
committerGitHub <noreply@github.com>2021-03-28 18:11:15 -0400
commitf787121080255abfb2f4ffc94d7d572a09e3ba61 (patch)
tree3bebe0e190250c4b74d8ca3901f66d78a8907467 /lib/threads
parent399a2a8cc8c29ece566fdc6b0ddb4ec1a5d6a9b9 (diff)
parent90a59769dd8d4de7b66c3e943e5271329980dab1 (diff)
Merge pull request #1083 from inkstitch/lexelby/license-headers
add license headers
Diffstat (limited to 'lib/threads')
-rw-r--r--lib/threads/__init__.py5
-rw-r--r--lib/threads/catalog.py5
-rw-r--r--lib/threads/color.py5
-rw-r--r--lib/threads/palette.py5
4 files changed, 20 insertions, 0 deletions
diff --git a/lib/threads/__init__.py b/lib/threads/__init__.py
index 1081ea14..18ef3e0d 100644
--- a/lib/threads/__init__.py
+++ b/lib/threads/__init__.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from .catalog import ThreadCatalog
from .color import ThreadColor
from .palette import ThreadPalette
diff --git a/lib/threads/catalog.py b/lib/threads/catalog.py
index c91ce227..c3ccb0c3 100644
--- a/lib/threads/catalog.py
+++ b/lib/threads/catalog.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import os
import sys
from collections.abc import Sequence
diff --git a/lib/threads/color.py b/lib/threads/color.py
index 32016112..69a70798 100644
--- a/lib/threads/color.py
+++ b/lib/threads/color.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import colorsys
import re
diff --git a/lib/threads/palette.py b/lib/threads/palette.py
index de7ed6f0..29d2a6dd 100644
--- a/lib/threads/palette.py
+++ b/lib/threads/palette.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from collections.abc import Set
from colormath.color_conversions import convert_color