Commit f794d54f authored by Mayank Mittal's avatar Mayank Mittal

Adds a newline for managers' string representations

parent 93cbeaca
......@@ -137,6 +137,7 @@ class ActionManager(ManagerBase):
table.add_row([index, name, term.action_dim])
# convert table to string
msg += table.get_string()
msg += "\n"
return msg
......
......@@ -263,6 +263,7 @@ class CommandManager(ManagerBase):
table.add_row([index, name, term.__class__.__name__])
# convert table to string
msg += table.get_string()
msg += "\n"
return msg
......
......@@ -64,6 +64,7 @@ class CurriculumManager(ManagerBase):
table.add_row([index, name])
# convert table to string
msg += table.get_string()
msg += "\n"
return msg
......
......@@ -70,6 +70,7 @@ class RewardManager(ManagerBase):
table.add_row([index, name, term_cfg.weight])
# convert table to string
msg += table.get_string()
msg += "\n"
return msg
......
......@@ -76,6 +76,7 @@ class TerminationManager(ManagerBase):
table.add_row([index, name, term_cfg.time_out])
# convert table to string
msg += table.get_string()
msg += "\n"
return msg
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment