aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bsie/__init__.py4
-rw-r--r--bsie/apps/__init__.py4
-rw-r--r--bsie/apps/_loader.py5
-rw-r--r--bsie/apps/index.py5
-rw-r--r--bsie/apps/info.py5
-rw-r--r--bsie/extractor/__init__.py3
-rw-r--r--bsie/extractor/base.py4
-rw-r--r--bsie/extractor/builder.py5
-rw-r--r--bsie/extractor/generic/__init__.py3
-rw-r--r--bsie/extractor/generic/constant.py4
-rw-r--r--bsie/extractor/generic/path.py5
-rw-r--r--bsie/extractor/generic/stat.py4
-rw-r--r--bsie/extractor/image/__init__.py5
-rw-r--r--bsie/extractor/image/colors_spatial.py4
-rw-r--r--bsie/extractor/image/photometrics.py5
-rw-r--r--bsie/extractor/preview.py5
-rw-r--r--bsie/lib/__init__.py5
-rw-r--r--bsie/lib/bsie.py5
-rw-r--r--bsie/lib/builder.py5
-rw-r--r--bsie/lib/naming_policy.py5
-rw-r--r--bsie/lib/pipeline.py5
-rw-r--r--bsie/reader/__init__.py8
-rw-r--r--bsie/reader/base.py9
-rw-r--r--bsie/reader/builder.py5
-rw-r--r--bsie/reader/chain.py5
-rw-r--r--bsie/reader/exif.py5
-rw-r--r--bsie/reader/image/__init__.py5
-rw-r--r--bsie/reader/image/_pillow.py5
-rw-r--r--bsie/reader/image/_raw.py5
-rw-r--r--bsie/reader/path.py4
-rw-r--r--bsie/reader/preview/__init__.py5
-rw-r--r--bsie/reader/preview/_pg.py5
-rw-r--r--bsie/reader/preview/_pillow.py5
-rw-r--r--bsie/reader/preview/_rawpy.py5
-rw-r--r--bsie/reader/preview/utils.py5
-rw-r--r--bsie/reader/stat.py4
-rw-r--r--bsie/utils/__init__.py4
-rw-r--r--bsie/utils/bsfs.py4
-rw-r--r--bsie/utils/errors.py4
-rw-r--r--bsie/utils/filematcher/__init__.py5
-rw-r--r--bsie/utils/filematcher/matcher.py5
-rw-r--r--bsie/utils/filematcher/parser.py5
-rw-r--r--bsie/utils/loading.py5
-rw-r--r--bsie/utils/namespaces.py4
-rw-r--r--bsie/utils/node.py4
-rw-r--r--test/apps/test_index.py5
-rw-r--r--test/apps/test_info.py5
-rw-r--r--test/apps/test_loader.py5
-rw-r--r--test/extractor/generic/test_constant.py5
-rw-r--r--test/extractor/generic/test_path.py5
-rw-r--r--test/extractor/generic/test_stat.py5
-rw-r--r--test/extractor/image/test_colors_spatial.py5
-rw-r--r--test/extractor/image/test_photometrics.py5
-rw-r--r--test/extractor/test_base.py5
-rw-r--r--test/extractor/test_builder.py5
-rw-r--r--test/extractor/test_preview.py5
-rw-r--r--test/lib/test_bsie.py5
-rw-r--r--test/lib/test_builder.py5
-rw-r--r--test/lib/test_naming_policy.py5
-rw-r--r--test/lib/test_pipeline.py5
-rw-r--r--test/reader/image/load_nef.py5
-rw-r--r--test/reader/image/test_image.py5
-rw-r--r--test/reader/image/test_pillow.py5
-rw-r--r--test/reader/image/test_raw_image.py5
-rw-r--r--test/reader/preview/load_nef.py5
-rw-r--r--test/reader/preview/test_pg.py5
-rw-r--r--test/reader/preview/test_pillow.py5
-rw-r--r--test/reader/preview/test_preview.py5
-rw-r--r--test/reader/preview/test_rawpy.py5
-rw-r--r--test/reader/preview/test_utils.py5
-rw-r--r--test/reader/test_base.py5
-rw-r--r--test/reader/test_builder.py5
-rw-r--r--test/reader/test_chain.py5
-rw-r--r--test/reader/test_exif.py5
-rw-r--r--test/reader/test_path.py5
-rw-r--r--test/reader/test_stat.py5
-rw-r--r--test/utils/filematcher/test_matcher.py5
-rw-r--r--test/utils/filematcher/test_parser.py5
-rw-r--r--test/utils/test_loading.py5
-rw-r--r--test/utils/test_node.py5
80 files changed, 2 insertions, 388 deletions
diff --git a/bsie/__init__.py b/bsie/__init__.py
index c253f39..f6f2ff2 100644
--- a/bsie/__init__.py
+++ b/bsie/__init__.py
@@ -1,8 +1,4 @@
"""The BSIE module extracts triples from files for insertion into a BSFS storage.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import collections
diff --git a/bsie/apps/__init__.py b/bsie/apps/__init__.py
index 4c852a9..cec8f84 100644
--- a/bsie/apps/__init__.py
+++ b/bsie/apps/__init__.py
@@ -1,9 +1,5 @@
#!/usr/bin/env python3
"""BSIE tools.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import argparse
diff --git a/bsie/apps/_loader.py b/bsie/apps/_loader.py
index e02bed5..36dd8a6 100644
--- a/bsie/apps/_loader.py
+++ b/bsie/apps/_loader.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/apps/index.py b/bsie/apps/index.py
index 2d147c9..d64e8c2 100644
--- a/bsie/apps/index.py
+++ b/bsie/apps/index.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import argparse
import os
diff --git a/bsie/apps/info.py b/bsie/apps/info.py
index 363ab30..e27b70b 100644
--- a/bsie/apps/info.py
+++ b/bsie/apps/info.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import argparse
import os
diff --git a/bsie/extractor/__init__.py b/bsie/extractor/__init__.py
index 5f385ee..36fa9ba 100644
--- a/bsie/extractor/__init__.py
+++ b/bsie/extractor/__init__.py
@@ -2,9 +2,6 @@
Each Extractor class is linked to the Reader class whose content it requires.
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
diff --git a/bsie/extractor/base.py b/bsie/extractor/base.py
index d8b86a5..3759c68 100644
--- a/bsie/extractor/base.py
+++ b/bsie/extractor/base.py
@@ -1,8 +1,4 @@
"""The Extractor classes transform content into triples.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import abc
diff --git a/bsie/extractor/builder.py b/bsie/extractor/builder.py
index 0fd3685..d691b0e 100644
--- a/bsie/extractor/builder.py
+++ b/bsie/extractor/builder.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/extractor/generic/__init__.py b/bsie/extractor/generic/__init__.py
index 4783949..46a4bd6 100644
--- a/bsie/extractor/generic/__init__.py
+++ b/bsie/extractor/generic/__init__.py
@@ -3,9 +3,6 @@ files. Examples include file system information (file name and size, mime type,
etc.) and information that is independent of the actual file (constant triples,
host platform infos, current time, etc.).
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
diff --git a/bsie/extractor/generic/constant.py b/bsie/extractor/generic/constant.py
index 938e20c..7acbe95 100644
--- a/bsie/extractor/generic/constant.py
+++ b/bsie/extractor/generic/constant.py
@@ -1,8 +1,4 @@
"""The Constant extractor produces pre-specified triples.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
diff --git a/bsie/extractor/generic/path.py b/bsie/extractor/generic/path.py
index cd8cec9..8b01933 100644
--- a/bsie/extractor/generic/path.py
+++ b/bsie/extractor/generic/path.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
import typing
diff --git a/bsie/extractor/generic/stat.py b/bsie/extractor/generic/stat.py
index f35f8e1..50821a7 100644
--- a/bsie/extractor/generic/stat.py
+++ b/bsie/extractor/generic/stat.py
@@ -1,8 +1,4 @@
"""Extract information from the file system, such as filesize.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import os
diff --git a/bsie/extractor/image/__init__.py b/bsie/extractor/image/__init__.py
index 75b118d..f82424a 100644
--- a/bsie/extractor/image/__init__.py
+++ b/bsie/extractor/image/__init__.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/extractor/image/colors_spatial.py b/bsie/extractor/image/colors_spatial.py
index 15fd281..34cd615 100644
--- a/bsie/extractor/image/colors_spatial.py
+++ b/bsie/extractor/image/colors_spatial.py
@@ -1,8 +1,4 @@
"""Spatial color features.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
diff --git a/bsie/extractor/image/photometrics.py b/bsie/extractor/image/photometrics.py
index ae0a541..525f207 100644
--- a/bsie/extractor/image/photometrics.py
+++ b/bsie/extractor/image/photometrics.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
from fractions import Fraction
import typing
diff --git a/bsie/extractor/preview.py b/bsie/extractor/preview.py
index 1531d62..7e4a171 100644
--- a/bsie/extractor/preview.py
+++ b/bsie/extractor/preview.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import io
import typing
diff --git a/bsie/lib/__init__.py b/bsie/lib/__init__.py
index 48379de..f44fb74 100644
--- a/bsie/lib/__init__.py
+++ b/bsie/lib/__init__.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/lib/bsie.py b/bsie/lib/bsie.py
index a572525..b02e707 100644
--- a/bsie/lib/bsie.py
+++ b/bsie/lib/bsie.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/lib/builder.py b/bsie/lib/builder.py
index 39da441..3a15311 100644
--- a/bsie/lib/builder.py
+++ b/bsie/lib/builder.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import logging
import typing
diff --git a/bsie/lib/naming_policy.py b/bsie/lib/naming_policy.py
index 131a70b..c99f8c8 100644
--- a/bsie/lib/naming_policy.py
+++ b/bsie/lib/naming_policy.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import abc
import os
diff --git a/bsie/lib/pipeline.py b/bsie/lib/pipeline.py
index 0bc5109..128eecc 100644
--- a/bsie/lib/pipeline.py
+++ b/bsie/lib/pipeline.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
from collections import defaultdict
import logging
diff --git a/bsie/reader/__init__.py b/bsie/reader/__init__.py
index 4163d1c..a1c38a9 100644
--- a/bsie/reader/__init__.py
+++ b/bsie/reader/__init__.py
@@ -1,8 +1,8 @@
"""The Reader classes return high-level content structures from files.
The Reader fulfills two purposes:
- First, it brokers between multiple libraries and file formats.
- Second, it separates multiple aspects of a file into distinct content types.
+First, it brokers between multiple libraries and file formats.
+Second, it separates multiple aspects of a file into distinct content types.
Often, different libraries focus on reading different types of content from a
file. E.g. one would use different modules to read file system infos than to
@@ -11,9 +11,6 @@ type. Each distinct type can be implemented in a file or submodule that
provides a Reader implementation. Through utilization of submodules, different
file formats can be supported.
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
@@ -29,4 +26,3 @@ __all__: typing.Sequence[str] = (
)
## EOF ##
-## EOF ##
diff --git a/bsie/reader/base.py b/bsie/reader/base.py
index 099a327..a775701 100644
--- a/bsie/reader/base.py
+++ b/bsie/reader/base.py
@@ -1,13 +1,4 @@
-"""The Reader classes return high-level content structures from files.
-The Reader fulfills two purposes:
- First, it brokers between multiple libraries and file formats.
- Second, it separates multiple aspects of a file into distinct content types.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import abc
import typing
diff --git a/bsie/reader/builder.py b/bsie/reader/builder.py
index 8699e75..d32700b 100644
--- a/bsie/reader/builder.py
+++ b/bsie/reader/builder.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/reader/chain.py b/bsie/reader/chain.py
index 1dbc52b..79b44b4 100644
--- a/bsie/reader/chain.py
+++ b/bsie/reader/chain.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import logging
import typing
diff --git a/bsie/reader/exif.py b/bsie/reader/exif.py
index e087bec..8c74462 100644
--- a/bsie/reader/exif.py
+++ b/bsie/reader/exif.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/reader/image/__init__.py b/bsie/reader/image/__init__.py
index c5d2a2a..89642f2 100644
--- a/bsie/reader/image/__init__.py
+++ b/bsie/reader/image/__init__.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/reader/image/_pillow.py b/bsie/reader/image/_pillow.py
index 5b2bdf2..0611d3c 100644
--- a/bsie/reader/image/_pillow.py
+++ b/bsie/reader/image/_pillow.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/reader/image/_raw.py b/bsie/reader/image/_raw.py
index 257fdb3..e5745aa 100644
--- a/bsie/reader/image/_raw.py
+++ b/bsie/reader/image/_raw.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/reader/path.py b/bsie/reader/path.py
index 1ca05a0..45eb127 100644
--- a/bsie/reader/path.py
+++ b/bsie/reader/path.py
@@ -1,8 +1,4 @@
"""The Path reader produces a file path.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
diff --git a/bsie/reader/preview/__init__.py b/bsie/reader/preview/__init__.py
index 3e69a4a..791a133 100644
--- a/bsie/reader/preview/__init__.py
+++ b/bsie/reader/preview/__init__.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import typing
diff --git a/bsie/reader/preview/_pg.py b/bsie/reader/preview/_pg.py
index 097c513..401b33d 100644
--- a/bsie/reader/preview/_pg.py
+++ b/bsie/reader/preview/_pg.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
from functools import partial
import contextlib
diff --git a/bsie/reader/preview/_pillow.py b/bsie/reader/preview/_pillow.py
index 174d509..15c1c6d 100644
--- a/bsie/reader/preview/_pillow.py
+++ b/bsie/reader/preview/_pillow.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
from functools import partial
import typing
diff --git a/bsie/reader/preview/_rawpy.py b/bsie/reader/preview/_rawpy.py
index 2c20a48..16e8675 100644
--- a/bsie/reader/preview/_rawpy.py
+++ b/bsie/reader/preview/_rawpy.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
from functools import partial
import typing
diff --git a/bsie/reader/preview/utils.py b/bsie/reader/preview/utils.py
index 2ef1562..82ecc31 100644
--- a/bsie/reader/preview/utils.py
+++ b/bsie/reader/preview/utils.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/reader/stat.py b/bsie/reader/stat.py
index 706dc47..f42e7fb 100644
--- a/bsie/reader/stat.py
+++ b/bsie/reader/stat.py
@@ -1,8 +1,4 @@
"""The Stat reader produces filesystem stat information.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import os
diff --git a/bsie/utils/__init__.py b/bsie/utils/__init__.py
index 9cb60ed..18c8db7 100644
--- a/bsie/utils/__init__.py
+++ b/bsie/utils/__init__.py
@@ -1,8 +1,4 @@
"""Common tools and definitions.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
diff --git a/bsie/utils/bsfs.py b/bsie/utils/bsfs.py
index ef5db31..fc045cc 100644
--- a/bsie/utils/bsfs.py
+++ b/bsie/utils/bsfs.py
@@ -1,8 +1,4 @@
"""BSFS bridge, provides BSFS bindings for BSIE.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
diff --git a/bsie/utils/errors.py b/bsie/utils/errors.py
index 8133cd4..e71fc60 100644
--- a/bsie/utils/errors.py
+++ b/bsie/utils/errors.py
@@ -1,8 +1,4 @@
"""Common BSIE exceptions.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
diff --git a/bsie/utils/filematcher/__init__.py b/bsie/utils/filematcher/__init__.py
index 1e23e4e..908de78 100644
--- a/bsie/utils/filematcher/__init__.py
+++ b/bsie/utils/filematcher/__init__.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import typing
diff --git a/bsie/utils/filematcher/matcher.py b/bsie/utils/filematcher/matcher.py
index a279a4b..1fa308e 100644
--- a/bsie/utils/filematcher/matcher.py
+++ b/bsie/utils/filematcher/matcher.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2021
-"""
# standard imports
from collections.abc import Callable, Collection, Hashable
import abc
diff --git a/bsie/utils/filematcher/parser.py b/bsie/utils/filematcher/parser.py
index 2f82875..dc28a0d 100644
--- a/bsie/utils/filematcher/parser.py
+++ b/bsie/utils/filematcher/parser.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2021
-"""
# standard imports
import typing
diff --git a/bsie/utils/loading.py b/bsie/utils/loading.py
index eb05c35..3c5c7c1 100644
--- a/bsie/utils/loading.py
+++ b/bsie/utils/loading.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import importlib
import typing
diff --git a/bsie/utils/namespaces.py b/bsie/utils/namespaces.py
index 0af8ece..310aa3f 100644
--- a/bsie/utils/namespaces.py
+++ b/bsie/utils/namespaces.py
@@ -1,8 +1,4 @@
"""Default namespaces used throughout BSIE.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
diff --git a/bsie/utils/node.py b/bsie/utils/node.py
index aa62c06..fa34b2e 100644
--- a/bsie/utils/node.py
+++ b/bsie/utils/node.py
@@ -1,8 +1,4 @@
"""Lighweight Node to bridge to BSFS.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
diff --git a/test/apps/test_index.py b/test/apps/test_index.py
index f632599..03209fe 100644
--- a/test/apps/test_index.py
+++ b/test/apps/test_index.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import contextlib
import io
diff --git a/test/apps/test_info.py b/test/apps/test_info.py
index cf8d52f..d705629 100644
--- a/test/apps/test_info.py
+++ b/test/apps/test_info.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import argparse
import contextlib
diff --git a/test/apps/test_loader.py b/test/apps/test_loader.py
index 09a9162..20254ec 100644
--- a/test/apps/test_loader.py
+++ b/test/apps/test_loader.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
import tempfile
diff --git a/test/extractor/generic/test_constant.py b/test/extractor/generic/test_constant.py
index bde3805..db55852 100644
--- a/test/extractor/generic/test_constant.py
+++ b/test/extractor/generic/test_constant.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest
diff --git a/test/extractor/generic/test_path.py b/test/extractor/generic/test_path.py
index 5568de7..d40a28c 100644
--- a/test/extractor/generic/test_path.py
+++ b/test/extractor/generic/test_path.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest
diff --git a/test/extractor/generic/test_stat.py b/test/extractor/generic/test_stat.py
index f543386..8868546 100644
--- a/test/extractor/generic/test_stat.py
+++ b/test/extractor/generic/test_stat.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
import unittest
diff --git a/test/extractor/image/test_colors_spatial.py b/test/extractor/image/test_colors_spatial.py
index ba551f3..967aaf2 100644
--- a/test/extractor/image/test_colors_spatial.py
+++ b/test/extractor/image/test_colors_spatial.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
import unittest
diff --git a/test/extractor/image/test_photometrics.py b/test/extractor/image/test_photometrics.py
index 6e3b661..0e0261b 100644
--- a/test/extractor/image/test_photometrics.py
+++ b/test/extractor/image/test_photometrics.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest
diff --git a/test/extractor/test_base.py b/test/extractor/test_base.py
index acfaf58..bb1f73b 100644
--- a/test/extractor/test_base.py
+++ b/test/extractor/test_base.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest
diff --git a/test/extractor/test_builder.py b/test/extractor/test_builder.py
index 039ea53..1b8951a 100644
--- a/test/extractor/test_builder.py
+++ b/test/extractor/test_builder.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest
diff --git a/test/extractor/test_preview.py b/test/extractor/test_preview.py
index 10d2a7f..0e0068d 100644
--- a/test/extractor/test_preview.py
+++ b/test/extractor/test_preview.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import io
import os
diff --git a/test/lib/test_bsie.py b/test/lib/test_bsie.py
index 2ed9e10..52da8b8 100644
--- a/test/lib/test_bsie.py
+++ b/test/lib/test_bsie.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
import unittest
diff --git a/test/lib/test_builder.py b/test/lib/test_builder.py
index 48e932b..2bd1994 100644
--- a/test/lib/test_builder.py
+++ b/test/lib/test_builder.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import logging
import unittest
diff --git a/test/lib/test_naming_policy.py b/test/lib/test_naming_policy.py
index 4861c84..b2a3649 100644
--- a/test/lib/test_naming_policy.py
+++ b/test/lib/test_naming_policy.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest
diff --git a/test/lib/test_pipeline.py b/test/lib/test_pipeline.py
index 61fddd7..5125a5c 100644
--- a/test/lib/test_pipeline.py
+++ b/test/lib/test_pipeline.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import logging
import os
diff --git a/test/reader/image/load_nef.py b/test/reader/image/load_nef.py
index 5ba0adc..02be470 100644
--- a/test/reader/image/load_nef.py
+++ b/test/reader/image/load_nef.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
diff --git a/test/reader/image/test_image.py b/test/reader/image/test_image.py
index 26f6a93..ee9b8f9 100644
--- a/test/reader/image/test_image.py
+++ b/test/reader/image/test_image.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import importlib
import os
diff --git a/test/reader/image/test_pillow.py b/test/reader/image/test_pillow.py
index 8abf5c1..2cff768 100644
--- a/test/reader/image/test_pillow.py
+++ b/test/reader/image/test_pillow.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
import unittest
diff --git a/test/reader/image/test_raw_image.py b/test/reader/image/test_raw_image.py
index ba21b5a..0a5ed63 100644
--- a/test/reader/image/test_raw_image.py
+++ b/test/reader/image/test_raw_image.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import importlib
import os
diff --git a/test/reader/preview/load_nef.py b/test/reader/preview/load_nef.py
index 5ba0adc..02be470 100644
--- a/test/reader/preview/load_nef.py
+++ b/test/reader/preview/load_nef.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
diff --git a/test/reader/preview/test_pg.py b/test/reader/preview/test_pg.py
index e492cfa..381344f 100644
--- a/test/reader/preview/test_pg.py
+++ b/test/reader/preview/test_pg.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
from functools import partial
import os
diff --git a/test/reader/preview/test_pillow.py b/test/reader/preview/test_pillow.py
index ca38d89..d213bbb 100644
--- a/test/reader/preview/test_pillow.py
+++ b/test/reader/preview/test_pillow.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
from functools import partial
import os
diff --git a/test/reader/preview/test_preview.py b/test/reader/preview/test_preview.py
index fde610f..e144877 100644
--- a/test/reader/preview/test_preview.py
+++ b/test/reader/preview/test_preview.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
from functools import partial
import importlib
diff --git a/test/reader/preview/test_rawpy.py b/test/reader/preview/test_rawpy.py
index ed35f53..11a6f9b 100644
--- a/test/reader/preview/test_rawpy.py
+++ b/test/reader/preview/test_rawpy.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
from functools import partial
import importlib
diff --git a/test/reader/preview/test_utils.py b/test/reader/preview/test_utils.py
index c10c38c..2b15bc6 100644
--- a/test/reader/preview/test_utils.py
+++ b/test/reader/preview/test_utils.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
import unittest
diff --git a/test/reader/test_base.py b/test/reader/test_base.py
index 41f4c29..5dd2855 100644
--- a/test/reader/test_base.py
+++ b/test/reader/test_base.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest
diff --git a/test/reader/test_builder.py b/test/reader/test_builder.py
index 92e9edc..84e8e7a 100644
--- a/test/reader/test_builder.py
+++ b/test/reader/test_builder.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest
diff --git a/test/reader/test_chain.py b/test/reader/test_chain.py
index 901faa1..665aabc 100644
--- a/test/reader/test_chain.py
+++ b/test/reader/test_chain.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import logging
import os
diff --git a/test/reader/test_exif.py b/test/reader/test_exif.py
index f1330da..b2bf843 100644
--- a/test/reader/test_exif.py
+++ b/test/reader/test_exif.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
import unittest
diff --git a/test/reader/test_path.py b/test/reader/test_path.py
index 95e447f..f2eee06 100644
--- a/test/reader/test_path.py
+++ b/test/reader/test_path.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest
diff --git a/test/reader/test_stat.py b/test/reader/test_stat.py
index fd9fdcd..f36b8b3 100644
--- a/test/reader/test_stat.py
+++ b/test/reader/test_stat.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
import unittest
diff --git a/test/utils/filematcher/test_matcher.py b/test/utils/filematcher/test_matcher.py
index c3cccee..88e96c2 100644
--- a/test/utils/filematcher/test_matcher.py
+++ b/test/utils/filematcher/test_matcher.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import os
import stat
diff --git a/test/utils/filematcher/test_parser.py b/test/utils/filematcher/test_parser.py
index c594747..536db00 100644
--- a/test/utils/filematcher/test_parser.py
+++ b/test/utils/filematcher/test_parser.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest
diff --git a/test/utils/test_loading.py b/test/utils/test_loading.py
index 58ff166..b8773ab 100644
--- a/test/utils/test_loading.py
+++ b/test/utils/test_loading.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest
diff --git a/test/utils/test_node.py b/test/utils/test_node.py
index 1dcd0ed..918ce42 100644
--- a/test/utils/test_node.py
+++ b/test/utils/test_node.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsie test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import unittest