Skip to content

Commit 7e4b087

Browse files
authored
Merge branch 'main' into develop
2 parents 475d8bc + 2dcf542 commit 7e4b087

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def SendByeCommand(self, register_response: RegisterResponse):
162162
res = Empty()
163163
return res
164164
def GetBestPlannerAction(self, pairs: BestPlannerActionRequest):
165-
self.logger.debug(f"GetBestPlannerAction cycle:{pairs.state.world_model.cycle} pairs:{len(pairs.pairs)} unum:{pairs.state.register_response.uniform_number}")
165+
self.logger.debug(f"GetBestPlannerAction cycle:{pairs.state.world_model.cycle} pairs:{len(pairs.pairs)} unum:{pairs.register_response.uniform_number}")
166166
pairs_list: list[int, RpcActionState] = [(k, v) for k, v in pairs.pairs.items()]
167167
pairs_list.sort(key=lambda x: x[0])
168168
best_action = max(pairs_list, key=lambda x: -1000 if x[1].action.parent_index != -1 else x[1].predict_state.ball_position.x)

0 commit comments

Comments
 (0)