Add type annotations to most of the automagic files.

This commit is contained in:
Mike Auty
2017-12-05 00:23:54 +00:00
parent 4f58f0748f
commit 1f444f7b5e
13 changed files with 153 additions and 57 deletions
+3
View File
@@ -1,5 +1,8 @@
"""A set of classes providing consistent type checking and error handling for type/class validity
"""
import typing
ProgressCallback = typing.Union[typing.Callable[[int, str], None], None]
class ValidityRoutines(object):