flake8 complaints in baselines/her

This commit is contained in:
Peter Zhokhov
2019-02-26 16:50:10 -08:00
parent 5c7da772a4
commit 6dedd5d241
2 changed files with 2 additions and 2 deletions

View File

@@ -410,7 +410,7 @@ class DDPG(object):
logs += [('stats_g/mean', np.mean(self.sess.run([self.g_stats.mean])))] logs += [('stats_g/mean', np.mean(self.sess.run([self.g_stats.mean])))]
logs += [('stats_g/std', np.mean(self.sess.run([self.g_stats.std])))] logs += [('stats_g/std', np.mean(self.sess.run([self.g_stats.std])))]
if prefix is not '' and not prefix.endswith('/'): if prefix != '' and not prefix.endswith('/'):
return [(prefix + '/' + key, val) for key, val in logs] return [(prefix + '/' + key, val) for key, val in logs]
else: else:
return logs return logs

View File

@@ -163,7 +163,7 @@ class RolloutWorker:
logs += [('mean_Q', np.mean(self.Q_history))] logs += [('mean_Q', np.mean(self.Q_history))]
logs += [('episode', self.n_episodes)] logs += [('episode', self.n_episodes)]
if prefix is not '' and not prefix.endswith('/'): if prefix != '' and not prefix.endswith('/'):
return [(prefix + '/' + key, val) for key, val in logs] return [(prefix + '/' + key, val) for key, val in logs]
else: else:
return logs return logs