Remove UTF-8 "byte order mark" from Python files
These confuse CircuitPython_Library_Screenshot_Maker. The diff may not show usefully on github, but the byte sequence `b"\xef\xbb\xbf"` is removed from the beginning of each file. Standard Python, and probably CircuitPython, is not affected by this, but `findimports` does not know how to handle it.
This commit is contained in:
parent
ad5e58876e
commit
32fe87b945
6 changed files with 6 additions and 6 deletions
|
|
@ -1,4 +1,4 @@
|
|||
from adafruit_circuitplayground.express import cpx
|
||||
from adafruit_circuitplayground.express import cpx
|
||||
|
||||
cpx.pixels.brightness = 0.3
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
from adafruit_circuitplayground.express import cpx
|
||||
from adafruit_circuitplayground.express import cpx
|
||||
|
||||
cpx.pixels.brightness = 0.3
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import time
|
||||
import time
|
||||
from adafruit_circuitplayground.express import cpx
|
||||
|
||||
while True:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import array
|
||||
import array
|
||||
import math
|
||||
import time
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import analogio
|
||||
import analogio
|
||||
import board
|
||||
import neopixel
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import time
|
||||
import time
|
||||
|
||||
import adafruit_thermistor
|
||||
import board
|
||||
|
|
|
|||
Loading…
Reference in a new issue