Skip to content

Commit

Permalink
remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
CloseChoice committed Jul 2, 2024
1 parent d65c22c commit 15da105
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion gymnasium/envs/toy_text/frozen_lake.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,6 @@ def update_probability_matrix(row, col, action):
self.start_img = None

def step(self, a):
# import pdb; pdb.set_trace()
transitions = self.P[self.s][a]
i = categorical_sample([t[0] for t in transitions], self.np_random)
p, s, r, t = transitions[i]
Expand Down
1 change: 0 additions & 1 deletion gymnasium/envs/toy_text/taxi.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,6 @@ def action_mask(self, state: int):
return mask

def step(self, a):
# import pdb; pdb.set_trace()
transitions = self.P[self.s][a]
i = categorical_sample([t[0] for t in transitions], self.np_random)
p, s, r, t = transitions[i]
Expand Down

0 comments on commit 15da105

Please sign in to comment.