Skip to content

Commit 0654113

Browse files
author
python-desert
authored
Fix punctuation
2 parents aa815b5 + b4a0dce commit 0654113

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/desert/_make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def class_schema(clazz: type, meta: Dict[str, Any] = {}) -> Type[marshmallow.Sch
109109
elif issubclass(clazz, (list, dict)):
110110
raise desert.exceptions.UnknownType(
111111
"Use parametrized generics like typing.List[int] or typing.Dict[str, int] "
112-
f"instead of list and dict. Got {clazz}"
112+
f"instead of list and dict. Got {clazz}."
113113
)
114114
else:
115115
raise desert.exceptions.NotAnAttrsClassOrDataclass(clazz)

0 commit comments

Comments
 (0)