Skip to content

Commit

Permalink
Fix ad-hoc type descriptions (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickinson committed Jul 12, 2021
1 parent 08bcb1a commit 8679a11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions traits_futures/base_future.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def exception(self):
Returns
-------
exc_info : tuple(str, str, str)
exc_info : tuple
Tuple containing exception information in string form:
(exception type, exception value, formatted traceback).
Expand Down Expand Up @@ -241,7 +241,7 @@ def _task_sent(self, message):
Parameters
----------
message : tuple(str, object)
message : tuple
Message from the background task, in the form (message_type,
message_args).
"""
Expand Down Expand Up @@ -344,7 +344,7 @@ def _task_raised(self, exception_info):
Parameters
----------
exception_info : tuple(str, str, str)
exception_info : tuple
Tuple containing exception information in string form:
(exception type, exception value, formatted traceback).
"""
Expand Down
2 changes: 1 addition & 1 deletion traits_futures/i_future.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def exception(self):
Returns
-------
exc_info : tuple(str, str, str)
exc_info : tuple
Tuple containing exception information in string form:
(exception type, exception value, formatted traceback).
Expand Down

0 comments on commit 8679a11

Please sign in to comment.