diff --git a/speedtest_cli.py b/speedtest_cli.py index f8da8d6..68c619b 100755 --- a/speedtest_cli.py +++ b/speedtest_cli.py @@ -21,8 +21,14 @@ USER_AGENT = 'speedtest-cli/%s' % __version__ class FakeShutdownEvent(object): + """Class to fake a threading.Event.isSet so that users of this module + are not required to register their own threading.Event() + + """ + @staticmethod def isSet(): + "Dummy method to always return false""" return False