Skip to content

Commit 1416ca3

Browse files
brentrubrentru
authored andcommitted
removing incorrect .py after settings
1 parent b4966c8 commit 1416ca3

5 files changed

+9
-9
lines changed

examples/adafruit_io_simpletest_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
esp = adafruit_esp32spi.ESP_SPIcontrol(spi, esp32_cs, esp32_ready, esp32_reset)
2929
wifi = adafruit_esp32spi_wifimanager.ESPSPI_WiFiManager(esp, settings, board.NEOPIXEL)
3030

31-
# Set your Adafruit IO Username and Key in settings.py
31+
# Set your Adafruit IO Username and Key in wifi_settings.py
3232
# (visit io.adafruit.com if you need to create an account,
3333
# or if you need your Adafruit IO key.)
3434
ADAFRUIT_IO_USER = settings['adafruit_io_user']

examples/adafruit_io_simpletest_digital_out.py

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

1717
# Get wifi details and more from a wifi_settings.py.py file
1818
try:
19-
from wifi_settings.py import settings
19+
from wifi_settings import settings
2020
except ImportError:
2121
print("WiFi settings are kept in wifi_settings.py.py, please add them there!")
2222
raise
@@ -29,7 +29,7 @@
2929
esp = adafruit_esp32spi.ESP_SPIcontrol(spi, esp32_cs, esp32_ready, esp32_reset)
3030
wifi = adafruit_esp32spi_wifimanager.ESPSPI_WiFiManager(esp, settings, board.NEOPIXEL)
3131

32-
# Set your Adafruit IO Username and Key in settings.py
32+
# Set your Adafruit IO Username and Key in wifi_settings.py
3333
# (visit io.adafruit.com if you need to create an account,
3434
# or if you need your Adafruit IO key.)
3535
ADAFRUIT_IO_USER = settings['adafruit_io_user']

examples/adafruit_io_simpletest_feeds.py

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

1515
# Get wifi details and more from a wifi_settings.py.py file
1616
try:
17-
from wifi_settings.py import settings
17+
from wifi_settings import settings
1818
except ImportError:
1919
print("WiFi settings are kept in wifi_settings.py.py, please add them there!")
2020
raise
@@ -27,7 +27,7 @@
2727
esp = adafruit_esp32spi.ESP_SPIcontrol(spi, esp32_cs, esp32_ready, esp32_reset)
2828
wifi = adafruit_esp32spi_wifimanager.ESPSPI_WiFiManager(esp, settings, board.NEOPIXEL)
2929

30-
# Set your Adafruit IO Username and Key in settings.py
30+
# Set your Adafruit IO Username and Key in wifi_settings.py
3131
# (visit io.adafruit.com if you need to create an account,
3232
# or if you need your Adafruit IO key.)
3333
ADAFRUIT_IO_USER = settings['adafruit_io_user']

examples/adafruit_io_simpletest_metadata.py

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

1616
# Get wifi details and more from a wifi_settings.py.py file
1717
try:
18-
from wifi_settings.py import settings
18+
from wifi_settings import settings
1919
except ImportError:
2020
print("WiFi settings are kept in wifi_settings.py.py, please add them there!")
2121
raise
@@ -28,7 +28,7 @@
2828
esp = adafruit_esp32spi.ESP_SPIcontrol(spi, esp32_cs, esp32_ready, esp32_reset)
2929
wifi = adafruit_esp32spi_wifimanager.ESPSPI_WiFiManager(esp, settings, board.NEOPIXEL)
3030

31-
# Set your Adafruit IO Username and Key in settings.py
31+
# Set your Adafruit IO Username and Key in wifi_settings.py
3232
# (visit io.adafruit.com if you need to create an account,
3333
# or if you need your Adafruit IO key.)
3434
ADAFRUIT_IO_USER = settings['adafruit_io_user']

examples/adafruit_io_simpletest_temperature.py

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

2424
# Get wifi details and more from a wifi_settings.py.py file
2525
try:
26-
from wifi_settings.py import settings
26+
from wifi_settings import settings
2727
except ImportError:
2828
print("WiFi settings are kept in wifi_settings.py.py, please add them there!")
2929
raise
@@ -36,7 +36,7 @@
3636
esp = adafruit_esp32spi.ESP_SPIcontrol(spi, esp32_cs, esp32_ready, esp32_reset)
3737
wifi = adafruit_esp32spi_wifimanager.ESPSPI_WiFiManager(esp, settings, board.NEOPIXEL)
3838

39-
# Set your Adafruit IO Username and Key in settings.py
39+
# Set your Adafruit IO Username and Key in wifi_settings.py
4040
# (visit io.adafruit.com if you need to create an account,
4141
# or if you need your Adafruit IO key.)
4242
ADAFRUIT_IO_USER = settings['adafruit_io_user']

0 commit comments

Comments
 (0)