Skip to content

Commit

Permalink
docs: fix README.md code example #254
Browse files Browse the repository at this point in the history
  • Loading branch information
Reliquat authored Oct 14, 2024
1 parent b2b826f commit 04027ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ async def main():
async for found_data in RuuviTagSensor.get_data_async(macs):
print(f"MAC: {found_data[0]}")
print(f"Data: {found_data[1]}")
datas.push(found_data)
datas.append(found_data)
if len(datas) > 10:
break

Expand Down

0 comments on commit 04027ca

Please sign in to comment.