Skip to content
Snippets Groups Projects
Commit dee75f4c authored by Florian Schröder's avatar Florian Schröder
Browse files

Add missing comma in game_port argument

A missing comma was discovered and corrected in the game_port argument on the study_server.py file. This could potentially prevent syntax errors and bugs that might result from incomplete statements and ensure smoother execution of the function.
parent 794a4414
No related branches found
No related tags found
No related merge requests found
Pipeline #47731 passed
......@@ -450,7 +450,7 @@ if __name__ == "__main__":
args.study_url,
args.study_port,
game_host=args.game_url,
game_port=args.game_port
game_port=args.game_port,
manager_ids=args.manager_ids,
study_config_path=args.study_config,
)
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