Skip to content

Commit

Permalink
fix typo in platform API base class (sonic-net#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
keboliu authored and jleveque committed Mar 25, 2019
1 parent 30b6f52 commit 4405ec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sonic_platform_base/chassis_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,4 +220,4 @@ def get_watchdog(self):
An object derived from WatchdogBase representing the hardware
watchdog device
"""
return _watchdog
return self._watchdog
2 changes: 1 addition & 1 deletion sonic_platform_base/psu_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_fan(self):
An object dervied from FanBase representing the fan module
contained in this PSU
"""
return _fan
return self._fan

def set_status_led(self, color):
"""
Expand Down

0 comments on commit 4405ec9

Please sign in to comment.