From 22f478ecc72ea53b190d7744fbb1f157eabb768f Mon Sep 17 00:00:00 2001 From: "dps.lwk" Date: Fri, 31 Aug 2018 11:56:03 +0100 Subject: [PATCH] Fix Kimballs C in Python semicolons --- boot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot.py b/boot.py index 1c1d49f..1b12046 100644 --- a/boot.py +++ b/boot.py @@ -2,8 +2,8 @@ import os, tilda from machine import Neopix n=Neopix() -n.display([0,0]); -n.display([0,0]); +n.display([0,0]) +n.display([0,0]) print("EMF: boot.py") os.sync()