From dee75f4c091bce99f2065c1ef0bc5154421e9b0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Schr=C3=B6der?= <fschroeder@techfak.uni-bielefeld.de> Date: Mon, 4 Mar 2024 14:19:36 +0100 Subject: [PATCH] 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. --- cooperative_cuisine/study_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cooperative_cuisine/study_server.py b/cooperative_cuisine/study_server.py index 4c3e18ee..8b28e45d 100644 --- a/cooperative_cuisine/study_server.py +++ b/cooperative_cuisine/study_server.py @@ -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, ) -- GitLab