Skip to content

Commit

Permalink
Fix case in import statement
Browse files Browse the repository at this point in the history
  • Loading branch information
heuristicus committed Oct 25, 2023
1 parent 26a6ead commit 2a1d26d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spot_cam/src/spot_cam/spot_cam_ros.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
from std_msgs.msg import Float32MultiArray, Float32
from std_srvs.srv import Trigger

from spot_driver.ros_helpers import getSystemFaults
from spot_driver.ros_helpers import GetSystemFaults


class ROSHandler:
Expand Down Expand Up @@ -325,7 +325,7 @@ def get_status(self):
"""
events, degradations = self.client.get_bit_status()
status = BITStatus()
status.events = getSystemFaults(events, self.robot)
status.events = GetSystemFaults(events, self.robot)

for degradation in degradations:
status.degradations.append(
Expand Down

0 comments on commit 2a1d26d

Please # to comment.