Skip to content

Commit

Permalink
Minor tweak to exception message in conformance().
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilland committed Aug 24, 2018
1 parent 1af4b97 commit 4802e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fnc/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def conformance(source):
function
"""
if not isinstance(source, dict): # pragma: no cover
raise TypeError('matches "source" must be a dict')
raise TypeError('source must be a dict')

return partial(conforms, source)

Expand Down

0 comments on commit 4802e11

Please sign in to comment.