aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/extractor/generic
diff options
context:
space:
mode:
authorMatthias Baumgartner <dev@igsor.net>2023-03-01 22:31:03 +0100
committerMatthias Baumgartner <dev@igsor.net>2023-03-01 22:31:03 +0100
commit4b5c4d486bb4f0f4da2e25ad464e8336a781cdcb (patch)
treee3450cfdab65a447582890e4a6e3334da276aef1 /bsie/extractor/generic
parente0c4713c40367b4b41da926da0ba7ed05d47d54b (diff)
downloadbsie-4b5c4d486bb4f0f4da2e25ad464e8336a781cdcb.tar.gz
bsie-4b5c4d486bb4f0f4da2e25ad464e8336a781cdcb.tar.bz2
bsie-4b5c4d486bb4f0f4da2e25ad464e8336a781cdcb.zip
removed module header stubs
Diffstat (limited to 'bsie/extractor/generic')
-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
4 files changed, 0 insertions, 16 deletions
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