Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Shutgun committed Jul 25, 2023
1 parent 83808b9 commit 9ab8bb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ async def run():
print(guest_wifi.enabled) # False
print(guest_wifi.remaining_duration) # 0

# Get a QR code of the guest Wifi settings as byte stream in SVG format
# Get a QR code of the guest wifi settings as byte stream in SVG format
qr = wifi_qr_code(guest_wifi)
with open("qr.svg", "wb") as binary_file:
binary_file.write(qr)
Expand Down
2 changes: 1 addition & 1 deletion example_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def run():
print(guest_wifi.enabled) # False
print(guest_wifi.remaining_duration) # 0

# Get a QR code of the guest Wifi settings as byte stream in SVG format
# Get a QR code of the guest wifi settings as byte stream in SVG format
qr = wifi_qr_code(guest_wifi)
with open("qr.svg", "wb") as binary_file:
binary_file.write(qr)
Expand Down

0 comments on commit 9ab8bb6

Please sign in to comment.