Skip to content
This repository was archived by the owner on Sep 10, 2024. It is now read-only.

Commit 478211f

Browse files
authored
added missing parentheses
1 parent b92cea7 commit 478211f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shields/pysense_2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949

5050
lt = LTR329ALS01(py)
51-
print("Light (channel Blue, channel Red): " + str(lt.light()," Lux: ", str(lt.lux()), "lx"))
51+
print("Light (channel Blue, channel Red): " + str(lt.light())," Lux: ", str(lt.lux()), "lx")
5252

5353
li = LIS2HH12(py)
5454
print("Acceleration: " + str(li.acceleration()))
@@ -69,4 +69,4 @@
6969
pybytes.send_signal(3, lt.light())
7070
pybytes.send_signal(4, li.acceleration())
7171
pybytes.send_battery_level(int(battery_percentage))
72-
print("Sent data to pybytes")
72+
print("Sent data to pybytes")

0 commit comments

Comments
 (0)