Skip to content

Commit aec1c2f

Browse files
committed
Moved pylint disable
1 parent a38963e commit aec1c2f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CircuitPython_Pyloton/code.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@
4242
# Stop scanning whether or not we are connected.
4343
ble.stop_scan()
4444

45-
if ((not HEART or (hr_connection and hr_connection.connected)) and #pylint: disable=too-many-boolean-expressions
45+
#pylint: disable=too-many-boolean-expressions
46+
if ((not HEART or (hr_connection and hr_connection.connected)) and
4647
((not SPEED and not CADENCE) or
4748
(speed_cadence_connections and speed_cadence_connections[0].connected)) and
4849
(not AMS or (ams and ams.connected))):

0 commit comments

Comments
 (0)