Skip to content

Commit 432e086

Browse files
committed
more black fixes
1 parent 992d7ad commit 432e086

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

examples/esp_atcontrol_aio_post.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
raise
2626

2727
# Debug Level
28-
# Change the Debug Flag if you have issues with AT commands
29-
debugflag=False
28+
# Change the Debug Flag if you have issues with AT commands
29+
debugflag = False
3030

3131
if board.board_id == "challenger_rp2040_wifi":
3232
RX = board.ESP_RX

examples/esp_atcontrol_simpletest.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
32
# SPDX-License-Identifier: MIT
43

@@ -17,8 +16,8 @@
1716
print("WiFi secrets are kept in secrets.py, please add them there!")
1817
raise
1918
# Debug Level
20-
# Change the Debug Flag if you have issues with AT commands
21-
debugflag=False
19+
# Change the Debug Flag if you have issues with AT commands
20+
debugflag = False
2221

2322
if board.board_id == "challenger_rp2040_wifi":
2423
RX = board.ESP_RX
@@ -52,9 +51,9 @@
5251
while True:
5352
try:
5453
if first_pass:
55-
# Some ESP do not return OK on AP Scan.
56-
# See https://github.com/adafruit/Adafruit_CircuitPython_ESP_ATcontrol/issues/48
57-
# Comment out the next 3 lines if you get a No OK response to AT+CWLAP
54+
# Some ESP do not return OK on AP Scan.
55+
# See https://github.com/adafruit/Adafruit_CircuitPython_ESP_ATcontrol/issues/48
56+
# Comment out the next 3 lines if you get a No OK response to AT+CWLAP
5857
print("Scanning for AP's")
5958
for ap in esp.scan_APs():
6059
print(ap)

0 commit comments

Comments
 (0)