def observe()

in gym3/concat.py [0:0]


    def observe(self) -> Tuple[Any, Any, Any]:
        rews, obs, firsts = zip(*[env.observe() for env in self.envs])
        return np.concatenate(rews), concat(obs), np.concatenate(firsts)