Skip to content
Snippets Groups Projects
Commit ab78cce7 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Fix type error

:
parent d5f5b4b5
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,7 @@ def main(): ...@@ -62,7 +62,7 @@ def main():
ligier_ip = args['-l'] ligier_ip = args['-l']
ligier_port = int(args['-p']) ligier_port = int(args['-p'])
logio_ip = args['-x'] logio_ip = args['-x']
logio_port = args['-q'] logio_port = int(args['-q'])
pipe = Pipeline() pipe = Pipeline()
pipe.attach( pipe.attach(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment