mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-06-02 23:40:09 +00:00
Pytype fixes
This commit is contained in:
parent
43b4ee9cd7
commit
809b674010
1 changed files with 1 additions and 1 deletions
|
|
@ -509,7 +509,7 @@ class OffPolicyAlgorithm(BaseAlgorithm):
|
|||
|
||||
for i in range(len(dones)):
|
||||
if isinstance(next_obs, dict):
|
||||
replay_buffer.add(
|
||||
replay_buffer.add( # pytype: disable=wrong-arg-types
|
||||
{key: obs[i] for key, obs in self._last_original_obs.items()},
|
||||
{key: next_obs_[i] for key, next_obs_ in next_obs.items()},
|
||||
buffer_action[i],
|
||||
|
|
|
|||
Loading…
Reference in a new issue