mypy: Remove type: ignores not needed in Python 3.

This commit is contained in:
Tim Abbott
2017-08-25 11:01:20 -07:00
parent 55f0555c8d
commit b8e7369dee
18 changed files with 31 additions and 64 deletions

View File

@@ -38,7 +38,7 @@ if __name__ == '__main__':
suite = loader.discover(start_dir=tools_test_dir, top_level_dir=root_dir)
runner = unittest.TextTestRunner(verbosity=2)
result = runner.run(suite) # type: ignore # https://github.com/python/typeshed/issues/372
result = runner.run(suite)
if result.errors or result.failures:
raise Exception('Test failed!')