Fix markup.

This commit is contained in:
Eric V. Smith 2018-01-06 11:24:52 -05:00
parent ab1a60f08c
commit fc58b77335
1 changed files with 1 additions and 1 deletions

View File

@ -628,7 +628,7 @@ Module level helper functions
If you need to know if a class is an instance of a dataclass (and
not a dataclass itself), then add a further check for ``not
isinstance(obj, type)``:
isinstance(obj, type)``::
def is_dataclass_instance(obj):
return is_dataclass(obj) and not isinstance(obj, type)