Skip to content

Commit 32fe87b

Browse files
committed
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.
1 parent ad5e588 commit 32fe87b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CircuitPython_Made_Easy_On_CPX/cpx_buttons_1_neopixel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from adafruit_circuitplayground.express import cpx
1+
from adafruit_circuitplayground.express import cpx
22

33
cpx.pixels.brightness = 0.3
44

CircuitPython_Made_Easy_On_CPX/cpx_buttons_neopixels.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from adafruit_circuitplayground.express import cpx
1+
from adafruit_circuitplayground.express import cpx
22

33
cpx.pixels.brightness = 0.3
44

CircuitPython_Made_Easy_On_CPX/cpx_temperture_plotter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import time
1+
import time
22
from adafruit_circuitplayground.express import cpx
33

44
while True:

Sensor_Plotting_With_Mu_CircuitPython/audio.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import array
1+
import array
22
import math
33
import time
44

Sensor_Plotting_With_Mu_CircuitPython/color.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import analogio
1+
import analogio
22
import board
33
import neopixel
44

Sensor_Plotting_With_Mu_CircuitPython/temperature.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import time
1+
import time
22

33
import adafruit_thermistor
44
import board

0 commit comments

Comments
 (0)