Skip to content

Commit 1059e45

Browse files
authored
Merge pull request #1528 from jepler/remove-byte-order-marks
Remove UTF-8 "byte order mark" from Python files
2 parents ad5e588 + 32fe87b commit 1059e45

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

CircuitPython_Made_Easy_On_CPX/cpx_buttons_1_neopixel.py

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)