Skip to content

Commit 6328e2e

Browse files
author
brentru
committed
black
1 parent 3ac5c6d commit 6328e2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/fona_sms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
print("Connecting to network...")
1919
time.sleep(1)
2020
print("Connected to network!")
21-
print("RSSI: %ddB"%fona.rssi)
21+
print("RSSI: %ddB" % fona.rssi)
2222

2323
# Text a number
2424
if not fona.send_sms(140404, "HELP"):
2525
raise RuntimeError("FONA did not successfully send SMS")
2626

2727
# Ask the FONA how many SMS message it has
2828
num_sms = fona.num_sms
29-
print("%d SMS's on SIM Card"%num_sms)
29+
print("%d SMS's on SIM Card" % num_sms)
3030

3131
# Read out all the SMS messages on the FONA's SIM
3232
for slot in range(1, num_sms):

0 commit comments

Comments
 (0)