Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed May 26, 2024
1 parent bc5818d commit cd68a97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dinglehopper/extracted_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def is_valid_joiner(self, _, value):
raise ValueError("Can't have joiner without segments to join")
if self.segments is not None:
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
def is_valid_text(self, _, value):
Expand Down

0 comments on commit cd68a97

Please sign in to comment.