examples/hwapi/hwconfig_console: Don't alloc memory in value().

pull/2723/head
Paul Sokolovsky 2016-12-23 17:24:24 +03:00
rodzic 1328833663
commit 1e9093f8cb
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -3,10 +3,10 @@
class LEDClass:
def __init__(self, id):
self.id = id
self.id = "LED(%d):" % id
def value(self, v):
print("LED(%d):" % self.id, v)
print(self.id, v)
LED = LEDClass(1)