Revision dc449cc39d63a4fdb354bf9165611b49816aa50d authored by Tim Gates on 24 December 2020, 06:51:45 UTC, committed by Tim Gates on 24 December 2020, 06:51:45 UTC
There is a small typo in twitter/api.py.

Should read `unsuccessful` rather than `unsuccesful`.
1 parent acd9472
Raw File
test.py
import unittest

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