From f94bfd6de4237c0441e15824af6151b722c3a8d0 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 7 Jun 2017 14:02:27 -0700 Subject: [PATCH] test-bots: Fix lint errors. --- bots_api/test-bots | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bots_api/test-bots b/bots_api/test-bots index 42f7acc..251e1a0 100755 --- a/bots_api/test-bots +++ b/bots_api/test-bots @@ -34,11 +34,11 @@ if __name__ == '__main__': # type: (str) -> None # mypy doesn't recognize the TestLoader attribute, even though the code # is executable - loader = unittest.TestLoader() # type: ignore + loader = unittest.TestLoader() # type: ignore suite = loader.discover(start_dir=start_dir, top_level_dir=root_dir) runner = unittest.TextTestRunner(verbosity=2) # same issue as for TestLoader - result = runner.run(suite) # type: ignore + result = runner.run(suite) # type: ignore if result.errors or result.failures: raise Exception('Test failed!')