Skip to content

Commit

Permalink
show defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
mscheltienne committed Dec 2, 2024
1 parent b1a43d3 commit 9495922
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions flow/commands/forward_force.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,19 @@

@click.command(name="forward-force")
@click.option(
"--ip", help="IP address of the Unity server.", default="127.0.0.1", type=str
"--ip",
default="127.0.0.1",
help="IP address of the Unity server.",
show_default=True,
type=str,
)
@click.option(
"--port",
default=8055,
help="Port of the Unity server.",
show_default=True,
type=int,
)
@click.option("--port", help="Port of the Unity server.", default=8055, type=int)
def run(ip: str, port: int) -> None:
"""Run forward_force() command."""
socket = sc.socket(sc.AF_INET, sc.SOCK_DGRAM)
Expand Down

0 comments on commit 9495922

Please sign in to comment.