Skip to content

Commit

Permalink
Fix fix_alignment (#17)
Browse files Browse the repository at this point in the history
Signed-off-by: Petro Bratash <petrox.bratash@intel.com>
  • Loading branch information
bratashX authored and Your Name committed Dec 22, 2021
1 parent 1c44794 commit 5d221d3
Showing 1 changed file with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,25 +218,25 @@ def initizalize_system_led(self):
return True

def set_status_led(self, color):
"""
Sets the state of the system LED
"""
Sets the state of the system LED
Args:
color: A string representing the color with which to set the
system LED
Args:
color: A string representing the color with which to set the
system LED
Returns:
bool: True if system LED state is set successfully, False if not
"""
Returns:
bool: True if system LED state is set successfully, False if not
"""
self.system_led = color
return True

def get_status_led(self):
"""
Gets the state of the system LED
def get_status_led(self):
"""
Gets the state of the system LED
Returns:
A string, one of the valid LED color strings which could be vendor
specified.
"""
return self.system_led
Returns:
A string, one of the valid LED color strings which could be vendor
specified.
"""
return self.system_led

0 comments on commit 5d221d3

Please sign in to comment.