We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b84d0a4 + 2ae5f57 commit fdb8fe1Copy full SHA for fdb8fe1
1 file changed
dm_control/manipulation/lift.py
@@ -67,7 +67,7 @@ def _add_vertex_sites(self, box_geom_or_site):
67
"""Add sites corresponding to the vertices of a box geom or site."""
68
offsets = (
69
(-half_length, half_length) for half_length in box_geom_or_site.size)
70
- site_positions = np.vstack(itertools.product(*offsets))
+ site_positions = np.vstack(list(itertools.product(*offsets)))
71
if box_geom_or_site.pos is not None:
72
site_positions += box_geom_or_site.pos
73
self._vertices = []
0 commit comments