TheXeos commited on
Commit
b0e6a26
1 Parent(s): 3ff3ca5

Check if run bug

Browse files
Files changed (1) hide show
  1. background_task.py +1 -1
background_task.py CHANGED
@@ -160,7 +160,7 @@ def match(model1, model2):
160
  """
161
  model1_id = model1.author + "/" + model1.name
162
  model2_id = model2.author + "/" + model2.name
163
- subprocess.run(["./SoccerTows.x86_64", "-model1", model1_id, "-model2", model2_id])
164
  print(f"Match {model1_id} against {model2_id} ended.")
165
  model1.games_played += 1
166
  model2.games_played += 1
 
160
  """
161
  model1_id = model1.author + "/" + model1.name
162
  model2_id = model2.author + "/" + model2.name
163
+ # subprocess.run(["./SoccerTows.x86_64", "-model1", model1_id, "-model2", model2_id])
164
  print(f"Match {model1_id} against {model2_id} ended.")
165
  model1.games_played += 1
166
  model2.games_played += 1