Skip to content

Commit f302994

Browse files
committed
fix function call
1 parent bf9adc9 commit f302994

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/isaaclab/isaaclab/sim/schemas/schemas.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,7 @@ def define_mesh_collision_properties(
10141014
"""
10151015
# obtain stage
10161016
if stage is None:
1017-
stage = stage_utils.get_current_stage()
1017+
stage = get_current_stage()
10181018
# get USD prim
10191019
prim = stage.GetPrimAtPath(prim_path)
10201020
# check if prim path is valid
@@ -1048,7 +1048,7 @@ def modify_mesh_collision_properties(
10481048
"""
10491049
# obtain stage
10501050
if stage is None:
1051-
stage = stage_utils.get_current_stage()
1051+
stage = get_current_stage()
10521052
# get USD prim
10531053
prim = stage.GetPrimAtPath(prim_path)
10541054

0 commit comments

Comments
 (0)