Unnecessary code, and was triggering flake8.

This commit is contained in:
Itamar Turner-Trauring 2020-07-16 15:27:36 -04:00
parent 1f4cf403c6
commit 554be90b7e

View File

@ -104,10 +104,3 @@ class Base62(unittest.TestCase):
bs2l = base62.a2b_l(asl, lib)
assert len(bs2l) == numos # the size of the result must be just right
assert bs == bs2l
def suite():
suite = unittest.makeSuite(T, 'test')
return suite
if __name__ == "__main__":
unittest.main()