Skip to content

Commit

Permalink
Fix name of obstacle status fucntion
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammadUsama-afk-equinor committed Nov 1, 2023
1 parent 7840001 commit 6d8acc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/isar_robot/robotinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,6 @@ def _update_pressure_level(self) -> float:
self.pressure_level = (100 - randrange(0, 100) * 0.5) * millibar_to_bar
return self.pressure_level

def _check_obstacle_status(self) -> bool:
def _update_obstacle_status(self) -> bool:
self.obstacle_status = True
return self.obstacle_status

0 comments on commit 6d8acc2

Please sign in to comment.