Added missing types to arguments
This commit is contained in:
parent
eff0a607d2
commit
2c89918006
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue