From d3df4307d3b4f8dcc7237911b871bc1bc5cfb3f5 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. --- api/bots_api/test-bots | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/bots_api/test-bots b/api/bots_api/test-bots index 42f7acc3e9..251e1a0d36 100755 --- a/api/bots_api/test-bots +++ b/api/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!')