From 221e457391d77475f9f0129749d09e1a2bc8f0c3 Mon Sep 17 00:00:00 2001 From: Matteo Bettini Date: Tue, 3 Oct 2023 22:30:07 +0100 Subject: [PATCH] update Signed-off-by: Matteo Bettini --- tutorials/sphinx-tutorials/multiagent_ppo.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/sphinx-tutorials/multiagent_ppo.py b/tutorials/sphinx-tutorials/multiagent_ppo.py index 05e824b7e6e..7b1061f6f99 100644 --- a/tutorials/sphinx-tutorials/multiagent_ppo.py +++ b/tutorials/sphinx-tutorials/multiagent_ppo.py @@ -279,9 +279,9 @@ # This info will be useful in order to tell all other TorchRL components where to find each value # -print("action_key:", env.action_keys) -print("reward_key:", env.reward_keys) -print("done_key:", env.done_keys) +print("action_keys:", env.action_keys) +print("reward_keys:", env.reward_keys) +print("done_keys:", env.done_keys) ######################################################################