summaryrefslogtreecommitdiff
path: root/examples/pybullet/gym/pybullet_envs/minitaur/envs/minitaur_trotting_env_example.py
diff options
context:
space:
mode:
authorErwin Coumans <erwincoumans@google.com>2019-04-27 07:31:15 -0700
committerErwin Coumans <erwincoumans@google.com>2019-04-27 07:31:15 -0700
commitef9570c315ee0db1dffbb950dbd46aa726e06f83 (patch)
tree44dcbe67c0cd84f189b5e0cd7cc5dfda3488c843 /examples/pybullet/gym/pybullet_envs/minitaur/envs/minitaur_trotting_env_example.py
parentc59173504298ec79c04cbeb8df2b7766d4920627 (diff)
downloadbullet3-ef9570c315ee0db1dffbb950dbd46aa726e06f83.tar.gz
add yapf style and apply yapf to format all Python files
This recreates pull request #2192
Diffstat (limited to 'examples/pybullet/gym/pybullet_envs/minitaur/envs/minitaur_trotting_env_example.py')
-rw-r--r--examples/pybullet/gym/pybullet_envs/minitaur/envs/minitaur_trotting_env_example.py14
1 files changed, 6 insertions, 8 deletions
diff --git a/examples/pybullet/gym/pybullet_envs/minitaur/envs/minitaur_trotting_env_example.py b/examples/pybullet/gym/pybullet_envs/minitaur/envs/minitaur_trotting_env_example.py
index e158e1160..e38f86428 100644
--- a/examples/pybullet/gym/pybullet_envs/minitaur/envs/minitaur_trotting_env_example.py
+++ b/examples/pybullet/gym/pybullet_envs/minitaur/envs/minitaur_trotting_env_example.py
@@ -26,13 +26,12 @@ def main(argv):
network = config.network
with tf.Session() as sess:
- agent = simple_ppo_agent.SimplePPOPolicy(
- sess,
- env,
- network,
- policy_layers=policy_layers,
- value_layers=value_layers,
- checkpoint=os.path.join(LOG_DIR, CHECKPOINT))
+ agent = simple_ppo_agent.SimplePPOPolicy(sess,
+ env,
+ network,
+ policy_layers=policy_layers,
+ value_layers=value_layers,
+ checkpoint=os.path.join(LOG_DIR, CHECKPOINT))
sum_reward = 0
observation = env.reset()
@@ -48,4 +47,3 @@ def main(argv):
if __name__ == "__main__":
tf.app.run(main)
-