added comment, trying to trigger workflow
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Python formatting PEP8 / Pyhton-PEP8 (push) Failing after 3s

This commit is contained in:
Finn Christiansen 2023-05-28 17:10:50 +01:00
parent 2c23304285
commit df73b149df

1
rgb.py
View file

@ -45,6 +45,7 @@ if __name__ == "__main__":
while True: while True:
data = connection.recv(1024) data = connection.recv(1024)
if not data: if not data:
# connection lost, reestablish connection
connection, client_address = server.accept() connection, client_address = server.accept()
continue continue
rgb = data.decode() rgb = data.decode()