Skip to content

Commit fdb8fe1

Browse files
dm_control: Import of refs/pull/371/head
PiperOrigin-RevId: 507526433 Change-Id: I5557b6ba05664a350746b58a166a2c03f3731b1d
2 parents b84d0a4 + 2ae5f57 commit fdb8fe1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dm_control/manipulation/lift.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def _add_vertex_sites(self, box_geom_or_site):
6767
"""Add sites corresponding to the vertices of a box geom or site."""
6868
offsets = (
6969
(-half_length, half_length) for half_length in box_geom_or_site.size)
70-
site_positions = np.vstack(itertools.product(*offsets))
70+
site_positions = np.vstack(list(itertools.product(*offsets)))
7171
if box_geom_or_site.pos is not None:
7272
site_positions += box_geom_or_site.pos
7373
self._vertices = []

0 commit comments

Comments
 (0)