Skip to content

Commit f72b6a4

Browse files
author
Svetlana Karslioglu
committed
Update
1 parent 679aaae commit f72b6a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

intermediate_source/mario_rl_tutorial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@
104104
env = JoypadSpace(env, [["right"], ["right", "A"]])
105105

106106
env.reset()
107-
next_state, reward, done, info = env.step(action=0)
108-
print(f"{next_state.shape},\n {reward},\n {done},\n {info}")
107+
next_state, reward, done, truncated, info = env.step(action=0)
108+
print(f"{next_state.shape},\n {reward},\n {done},\n truncated{},\n {info}")
109109

110110

111111
######################################################################

0 commit comments

Comments
 (0)