18 lines
257 B
Python
18 lines
257 B
Python
|
|
'''
|
|
Platzhalter WIP
|
|
- ausprogrammieren nach Bedarf
|
|
Geräteliste
|
|
- wird regelmäßig aktualisiert
|
|
|
|
'''
|
|
|
|
class DeviceList():
|
|
|
|
def __init__(self):
|
|
self.devices = list()
|
|
|
|
def print(self):
|
|
for d in self.devicelist:
|
|
print(d)
|