We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6c0120 commit b166e13Copy full SHA for b166e13
README.md
@@ -51,13 +51,13 @@ async def main():
51
52
# Get all vacuum devices that support the v1 PropertiesApi
53
for device in devices:
54
- if not device.v1_properties:
55
- continue
+ if not device.v1_properties:
+ continue
56
57
- # Refresh the current device status
58
- status_trait = device.v1_properties.status
59
- await status_trait.refresh()
60
- print(status_trait)
+ # Refresh the current device status
+ status_trait = device.v1_properties.status
+ await status_trait.refresh()
+ print(status_trait)
61
62
asyncio.run(main())
63
```
0 commit comments