Hi @fardinabbasi,
This is where your error is coming from
return self._get_obs() if not terminated else None
You cannot return None. You will need to come up with some dummy observation to return.
Hi @fardinabbasi,
This is where your error is coming from
return self._get_obs() if not terminated else None
You cannot return None. You will need to come up with some dummy observation to return.