Add Kivy mock network
This commit is contained in:
parent
99be6bbf73
commit
80656b3fac
18
src/mock/network.py
Normal file
18
src/mock/network.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# pylint: disable=too-few-public-methods
|
||||
|
||||
"""
|
||||
Mock Network
|
||||
"""
|
||||
|
||||
|
||||
class objectracker(object):
|
||||
"""Mock object tracker"""
|
||||
missingObjects = {}
|
||||
|
||||
|
||||
class stats(object):
|
||||
"""Mock network statics"""
|
||||
@staticmethod
|
||||
def connectedHostsList():
|
||||
"""List of all the connected hosts"""
|
||||
return ()
|
Reference in New Issue
Block a user