Skip to content

Commit

Permalink
minor typo fixes (#1754)
Browse files Browse the repository at this point in the history
Whilst having a look around for something else I noticed a small typo,
figured I should fix it whilst I'm looking at it :P
  • Loading branch information
mdmohsin7 authored Feb 4, 2025
2 parents f364d54 + 154d411 commit 29887b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Friend/firmware/testing/delete_audio_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def on_notify(sender: bleak.BleakGATTCharacteristic, data: bytearray):
print('valid response. deleting more')
count = count+1
command = bytearray([1,count ,0,0,0,0])
print('attemptign to delete ',count)
print('attempting to delete ',count)
await client.write_gatt_char(storage_uuid, command, response=True)


Expand All @@ -50,7 +50,7 @@ async def on_notify(sender: bleak.BleakGATTCharacteristic, data: bytearray):
await asyncio.sleep(1)
command = bytearray([1,file_num ,0,0,0,0])
await client.write_gatt_char(storage_uuid, command, response=True)
print('attemptign to delete ',count)
print('attempting to delete ',count)
await asyncio.sleep(1)
while True:
await asyncio.sleep(1)
Expand Down

0 comments on commit 29887b5

Please sign in to comment.