mypy: Explicitly specify List[Any] in test_classes.py.

This commit is contained in:
neiljp (Neil Pilgrim)
2017-11-02 09:16:01 -07:00
committed by Tim Abbott
parent 792a580efb
commit 692e2150c6

View File

@@ -487,7 +487,7 @@ class ZulipTestCase(TestCase):
self.assertEqual(self.get_json_error(result, status_code=status_code), msg)
def assert_length(self, items, count):
# type: (List, int) -> None
# type: (List[Any], int) -> None
actual_count = len(items)
if actual_count != count: # nocoverage
print('ITEMS:\n')