aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/base/extractor.py
diff options
context:
space:
mode:
authorMatthias Baumgartner <dev@igsor.net>2022-10-31 14:14:42 +0100
committerMatthias Baumgartner <dev@igsor.net>2022-10-31 14:14:42 +0100
commit2da348c638ac5058d5acf09ab5df323ee04503d5 (patch)
tree48ee0e912e2f19f51bd684d790f0bcc2d906e887 /bsie/base/extractor.py
parentd4023fa972af379a4235f51783954671de974372 (diff)
downloadbsie-2da348c638ac5058d5acf09ab5df323ee04503d5.tar.gz
bsie-2da348c638ac5058d5acf09ab5df323ee04503d5.tar.bz2
bsie-2da348c638ac5058d5acf09ab5df323ee04503d5.zip
constant, filesize, and filename extractors
Diffstat (limited to 'bsie/base/extractor.py')
-rw-r--r--bsie/base/extractor.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bsie/base/extractor.py b/bsie/base/extractor.py
index d5b0922..ea43925 100644
--- a/bsie/base/extractor.py
+++ b/bsie/base/extractor.py
@@ -6,7 +6,6 @@ Author: Matthias Baumgartner, 2022
"""
# imports
import abc
-import collections
import typing
# inner-module imports
@@ -22,7 +21,7 @@ __all__: typing.Sequence[str] = (
## code ##
-class Extractor(abc.ABC, collections.abc.Iterable, collections.abc.Callable):
+class Extractor(abc.ABC):
"""Produce (node, predicate, value)-triples from some content."""
# what type of content is expected (i.e. reader subclass).