Skip to content

Commit

Permalink
fix: add missing types for click options
Browse files Browse the repository at this point in the history
Resolves #4
  • Loading branch information
escalate committed Dec 21, 2019
1 parent 5f93f02 commit 85324a1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,19 +203,24 @@ def add_devices_into_ha_bridge(self, ha_bridge_devices_configuration):
@click.command()
@click.option('--loxone-miniserver',
required=True,
type=str,
help='Set IP address of Loxone MiniServer')
@click.option('--loxone-username',
required=True,
type=str,
help='Set username for Loxone MiniServer login')
@click.option('--loxone-password',
required=True,
type=str,
help='Set password for Loxone MiniServer login')
@click.option('--ha-bridge-server',
required=True,
type=str,
default='localhost',
help='Set IP address of HA-Bridge server (Default: localhost)')
@click.option('--ha-bridge-port',
required=True,
type=int,
default=8080,
help='Set port of HA-Bridge server (Default: 8080)')
@click.option('--verbose',
Expand Down

0 comments on commit 85324a1

Please sign in to comment.