document FakeShutdownEvent
This commit is contained in:
parent
f009711526
commit
5ec8fa590d
|
@ -21,8 +21,14 @@ USER_AGENT = 'speedtest-cli/%s' % __version__
|
||||||
|
|
||||||
|
|
||||||
class FakeShutdownEvent(object):
|
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
|
@staticmethod
|
||||||
def isSet():
|
def isSet():
|
||||||
|
"Dummy method to always return false"""
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue