Skip to content

Commit

Permalink
docstring fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rytilahti committed Sep 6, 2017
1 parent 88b9af7 commit 8d9e30c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mirobo/vacuum_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,17 +328,17 @@ def find(vac: mirobo.Vacuum):
@cli.command()
@pass_dev
def map(vac: mirobo.Vacuum):
"""Returns the map token."""
"""Return the map token."""
click.echo(vac.map())


@cli.command()
@pass_dev
def info(vac: mirobo.Vacuum):
"""Returns info"""
"""Return device information."""
res = vac.info()

click.echo(res)
click.echo("%s" % res)
_LOGGER.debug("Full response: %s", pf(res.raw))


Expand Down

0 comments on commit 8d9e30c

Please sign in to comment.