diff options
author | Matthias Baumgartner <dev@igsor.net> | 2022-10-31 14:14:57 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2022-10-31 14:14:57 +0100 |
commit | 9389c741bdbbca9adbff6099d440706cd63deac4 (patch) | |
tree | 48ee0e912e2f19f51bd684d790f0bcc2d906e887 /bsie/base/extractor.py | |
parent | d4023fa972af379a4235f51783954671de974372 (diff) | |
parent | 2da348c638ac5058d5acf09ab5df323ee04503d5 (diff) | |
download | bsie-9389c741bdbbca9adbff6099d440706cd63deac4.tar.gz bsie-9389c741bdbbca9adbff6099d440706cd63deac4.tar.bz2 bsie-9389c741bdbbca9adbff6099d440706cd63deac4.zip |
Merge branch 'mb/extractors' into develop
Diffstat (limited to 'bsie/base/extractor.py')
-rw-r--r-- | bsie/base/extractor.py | 3 |
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). |