Skip to content

Commit 7de8f29

Browse files
committed
fixed some formating
1 parent 90782c8 commit 7de8f29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/requests_https_circuitpython.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
print("WiFi secrets are kept in secrets.py, please add them there!")
1515
raise
1616

17-
print("Connecting to %s"%secrets["ssid"])
17+
print("Connecting to %s" % secrets["ssid"])
1818
wifi.radio.connect(secrets["ssid"], secrets["password"])
19-
print("Connected to %s!"%secrets["ssid"])
19+
print("Connected to %s!" % secrets["ssid"])
2020
print("My IP address is", wifi.radio.ipv4_address)
2121

2222
socket = socketpool.SocketPool(wifi.radio)
@@ -58,4 +58,4 @@
5858
json_resp = response.json()
5959
# Parse out the 'json' key from json_resp dict.
6060
print("JSON Data received from server:", json_resp["json"])
61-
print("-" * 40)
61+
print("-" * 40)

0 commit comments

Comments
 (0)