Skip to content

Commit 88d67fe

Browse files
committed
exceptions: Remove stray single quote
1 parent 7b3fb9b commit 88d67fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/investir/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class FieldUnknownError(InvestirError):
1313
skippable = True
1414

1515
def __init__(self, fields: Sequence[str]) -> None:
16-
super().__init__(f"Unknown fields found: {', '.join(fields)}'")
16+
super().__init__(f"Unknown fields found: {', '.join(fields)}")
1717

1818

1919
class ParseError(InvestirError):

0 commit comments

Comments
 (0)