Skip to content

Commit

Permalink
remove unneeded parens
Browse files Browse the repository at this point in the history
  • Loading branch information
thatguy11325 committed Jul 8, 2024
1 parent 7e9be72 commit 4ad09c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokemonred_puffer/cleanrl_puffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def evaluate(self):
new_state = random.choice(self.states[new_state_key])
# TODO: Fill in more information about the new state
print(
f"\t {key}\n\t\t({self.event_tracker[key]}) -> {len(new_state_key)}\n\t\t{new_state_key}"
f"\t {key}:\n\t\t{self.event_tracker[key]} -> {len(new_state_key)}\n\t\t{new_state_key}"
)
self.env_recv_queues[key].put(new_state)
waiting_for.append(key)
Expand Down

0 comments on commit 4ad09c9

Please sign in to comment.