From a2baea55fb5788bc43b58495ffae4e7aa069cafe Mon Sep 17 00:00:00 2001 From: mischa Date: Sun, 3 Nov 2019 22:37:30 +0100 Subject: [PATCH] 32s in stead of 32 --- get-lights.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-lights.py b/get-lights.py index 0543d79..975bf25 100755 --- a/get-lights.py +++ b/get-lights.py @@ -43,7 +43,7 @@ with urllib.request.urlopen(req, context=no_cert_check) as response: json_data = json.loads(content) -print(f"{'ID':>2s}: {'Name':<32} {'State':<5s} Type") +print(f"{'ID':>2s}: {'Name':<32s} {'State':<5s} Type") print ("################################################################################") for key in json_data: if not json_data[key]['state']['reachable']: