Skip to content

Commit d9324b1

Browse files
committed
Fixed line length lynt issue
1 parent e9bbf95 commit d9324b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/esp32spi_wpa2ent_simpletest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ def normalize(v):
5353

5454
# WPA2 Enterprise support was added in fw ver 1.3.0. Check that the ESP32
5555
# is running at least that version, otherwise, bail out
56-
assert version_compare(firmware_version, "1.3.0") >= 0, "Inforrect ESP32 firmware version detected. v1.3.0 or greater required"
56+
assert version_compare(firmware_version, "1.3.0") >= 0, (
57+
"Incorrect ESP32 firmware version; >= 1.3.0 required.")
5758

5859
# Set up the SSID you would like to connect to
5960
# Note that we need to call wifi_set_network prior

0 commit comments

Comments
 (0)