We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90782c8 commit 7de8f29Copy full SHA for 7de8f29
examples/requests_https_circuitpython.py
@@ -14,9 +14,9 @@
14
print("WiFi secrets are kept in secrets.py, please add them there!")
15
raise
16
17
-print("Connecting to %s"%secrets["ssid"])
+print("Connecting to %s" % secrets["ssid"])
18
wifi.radio.connect(secrets["ssid"], secrets["password"])
19
-print("Connected to %s!"%secrets["ssid"])
+print("Connected to %s!" % secrets["ssid"])
20
print("My IP address is", wifi.radio.ipv4_address)
21
22
socket = socketpool.SocketPool(wifi.radio)
@@ -58,4 +58,4 @@
58
json_resp = response.json()
59
# Parse out the 'json' key from json_resp dict.
60
print("JSON Data received from server:", json_resp["json"])
61
-print("-" * 40)
+print("-" * 40)
0 commit comments