ran ruff check python --fix --unsafe-fixes

This commit is contained in:
2025-11-29 13:14:24 -05:00
parent 72c3ccfb6d
commit 290f972346

View File

@@ -233,7 +233,7 @@ class PersonalizedBot4(Strategy):
legal_actions = get_legal_actions(game, player)
print(len(legal_actions))
good_actions = [action for action in self.filter_actions(legal_actions)]
good_actions = self.filter_actions(legal_actions)
print(len(good_actions))
print(good_actions)