Finish off the automagic directory type annotations.

This commit is contained in:
Mike Auty
2017-12-06 01:21:19 +00:00
parent 1f444f7b5e
commit 06e623033d
7 changed files with 84 additions and 43 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
"""
import typing
ProgressCallback = typing.Union[typing.Callable[[int, str], None], None]
ProgressCallback = typing.Optional[typing.Callable[[int, str], None]]
class ValidityRoutines(object):