From 2bb0b8193618c5232ae0b77dacf247f63ed38ae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Fri, 11 Nov 2022 19:28:47 +0100 Subject: [PATCH] FIX: typo --- src/caoscrawler/converters.py | 2 +- src/doc/converters.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/caoscrawler/converters.py b/src/caoscrawler/converters.py index f8e758c6..552ff061 100644 --- a/src/caoscrawler/converters.py +++ b/src/caoscrawler/converters.py @@ -807,7 +807,7 @@ class TableConverter(Converter): The rows can be matched using a DictDictElementConverter. """ - @ abstractmethod + @abstractmethod def get_options(self): """ This method needs to be overwritten by the specific table converter to provide diff --git a/src/doc/converters.rst b/src/doc/converters.rst index 277abd88..74090cf8 100644 --- a/src/doc/converters.rst +++ b/src/doc/converters.rst @@ -87,7 +87,7 @@ Typical Subtree converters These converters expect `match_name` and `match_value` in their definition which allow to match the key and the value, respectively. -Note that their are defaults for accepting other types. For example, +Note that there are defaults for accepting other types. For example, DictFloatElementConverter also accepts DictIntegerElements. The default behavior can be adjusted with the fields `accept_text`, `accept_int`, `accept_float`, and `accept_bool`. -- GitLab