Skip to content

Commit

Permalink
mod unmatched variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
y-yosuke committed Aug 1, 2023
1 parent dc12bac commit 0b1a802
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions switchbot_ros/scripts/switchbot_ros_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def print_apiversion(self):
if self.bots is None:
return

base_url_str = 'Using SwitchBot API ';
base_url_str += self.bots.api_version;
rospy.loginfo(base_url_str)
apiversion_str = 'Using SwitchBot API ';
apiversion_str += self.bots.api_version;
rospy.loginfo(apiversion_str)


def print_devices(self):
Expand Down

0 comments on commit 0b1a802

Please sign in to comment.