Added missing types to arguments

This commit is contained in:
Sebastian 2024-12-18 18:49:53 +01:00
parent eff0a607d2
commit 2c89918006

View file

@ -44,13 +44,19 @@ def main():
"--local-addr", help="sender address to use in the UDP frames", required=True
)
parser.add_argument(
"--local-port", help="sender port to use in the UDP frames", default=4810
"--local-port",
help="sender port to use in the UDP frames",
default=4810,
type=int,
)
parser.add_argument(
"--remote-addr", help="remote address to use in the UDP frames", required=True
)
parser.add_argument(
"--remote-port", help="remote port to use in the UDP frames", default=3810
"--remote-port",
help="remote port to use in the UDP frames",
default=3810,
type=int,
)
parser.add_argument(