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:
Jeff Epler 2021-04-30 13:29:30 -05:00
parent ad5e58876e
commit 32fe87b945
6 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
from adafruit_circuitplayground.express import cpx
from adafruit_circuitplayground.express import cpx
cpx.pixels.brightness = 0.3

View file

@ -1,4 +1,4 @@
from adafruit_circuitplayground.express import cpx
from adafruit_circuitplayground.express import cpx
cpx.pixels.brightness = 0.3

View file

@ -1,4 +1,4 @@
import time
import time
from adafruit_circuitplayground.express import cpx
while True:

View file

@ -1,4 +1,4 @@
import array
import array
import math
import time

View file

@ -1,4 +1,4 @@
import analogio
import analogio
import board
import neopixel

View file

@ -1,4 +1,4 @@
import time
import time
import adafruit_thermistor
import board