1
0
Fork 0
mirror of https://github.com/qurator-spk/dinglehopper.git synced 2025-06-08 19:30:01 +02:00

Merge pull request #116 from stweil/master

Fix typo
This commit is contained in:
Mike Gerber 2024-07-10 01:13:24 +02:00 committed by GitHub
commit 521f034fba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -149,7 +149,7 @@ class ExtractedText:
raise ValueError("Can't have joiner without segments to join") raise ValueError("Can't have joiner without segments to join")
if self.segments is not None: if self.segments is not None:
if value not in ("", " ", "\n"): if value not in ("", " ", "\n"):
raise ValueError(f"Unexcepted segment joiner value {repr(value)}") raise ValueError(f"Unexpected segment joiner value {repr(value)}")
@_text.validator @_text.validator
def is_valid_text(self, _, value): def is_valid_text(self, _, value):