Fix `sb3_contrib/common/recurrent/type_aliases.py` type hint (#121)
* Update setup.cfg * Update changelog * Update type aliases
This commit is contained in:
parent
ded9f65bfd
commit
b3e4ddd09a
|
|
@ -28,6 +28,7 @@ Others:
|
|||
^^^^^^^
|
||||
- Fixed flake8 config
|
||||
- Fixed ``sb3_contrib/common/utils.py`` type hint
|
||||
- Fixed ``sb3_contrib/common/recurrent/type_aliases.py`` type hint
|
||||
|
||||
Release 1.6.2 (2022-10-10)
|
||||
--------------------------
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class RecurrentRolloutBufferSamples(NamedTuple):
|
|||
mask: th.Tensor
|
||||
|
||||
|
||||
class RecurrentDictRolloutBufferSamples(RecurrentRolloutBufferSamples):
|
||||
class RecurrentDictRolloutBufferSamples(NamedTuple):
|
||||
observations: TensorDict
|
||||
actions: th.Tensor
|
||||
old_values: th.Tensor
|
||||
|
|
|
|||
|
|
@ -29,7 +29,6 @@ exclude = (?x)(
|
|||
| sb3_contrib/ars/policies.py$
|
||||
| sb3_contrib/qrdqn/qrdqn.py$
|
||||
| sb3_contrib/qrdqn/policies.py$
|
||||
| sb3_contrib/common/recurrent/type_aliases.py$
|
||||
| sb3_contrib/common/recurrent/policies.py$
|
||||
| sb3_contrib/common/recurrent/buffers.py$
|
||||
| sb3_contrib/common/maskable/distributions.py$
|
||||
|
|
|
|||
Loading…
Reference in New Issue