https://github.com/bear/python-twitter
Raw File
Tip revision: cbcf58ba9a07fa40ec4d75719625ccda5cbf0231 authored by Wanda Evans on 19 February 2021, 05:01:56 UTC
corrected comments for DestoryBlock, DestroyMute
Tip revision: cbcf58b
test.py
import unittest

if __name__ == '__main__':
    testsuite = unittest.TestLoader().discover('.')
    unittest.TextTestRunner(verbosity=1).run(testsuite)
back to top