We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fef26d commit a6a55acCopy full SHA for a6a55ac
roborock/cli.py
@@ -82,9 +82,7 @@ async def _discover(ctx):
82
client = RoborockApiClient(login_data.email)
83
home_data = await client.get_home_data(login_data.user_data)
84
context.update(LoginData(**login_data.as_dict(), home_data=home_data))
85
- click.echo(
86
- f"Discovered devices {', '.join([device.name for device in home_data.get_all_devices()])}"
87
- )
+ click.echo(f"Discovered devices {', '.join([device.name for device in home_data.get_all_devices()])}")
88
89
90
@click.command()
0 commit comments