changed from string to int at tuple

Signed-off-by: Ebbe Baß <ebbe.bass>
This commit is contained in:
Ebbe Baß
2024-02-13 18:22:27 +01:00
parent 51f10053bf
commit 0976ce8a1a
+1 -1
View File
@@ -29,7 +29,7 @@ artNet = Artnet.Artnet(BINDIP = get_eth0_ip(), DEBUG = True, SHORTNAME = "PiXelT
# tuple_ip = tuple(int(el) for el in str(get_eth0_ip()).split("."))
tuple_ip = ("10","0","0","101")
tuple_ip = (10,0,0,101)
print(tuple_ip)