Skip to content

Commit

Permalink
Finished incomplete docstring on check_type()
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Jan 2, 2016
1 parent 5bfe1f6 commit 2940227
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion typeguard.py
Expand Up @@ -178,7 +178,8 @@ def check_type(argname: str, value, expected_type, typevars_memo: Dict[TypeVar,
Ensure that ``value`` matches ``expected_type``.
The types from the :mod:`typing` module do not support :func:`isinstance` or :func:`issubclass`
so
so a number of type specific checks are required. This function knows which checker to call
for which type.
:param argname: name of the argument to check; used for error messages
:param value: value to be checked against ``expected_type``
Expand Down

0 comments on commit 2940227

Please sign in to comment.