pep8 fixes
This commit is contained in:
parent
c508fa17f0
commit
4afd3b9170
4 changed files with 22 additions and 12 deletions
|
@ -1,17 +1,17 @@
|
|||
class RaidController():
|
||||
|
||||
def get_product_name(self):
|
||||
raise NotImplemented
|
||||
raise NotImplementedError
|
||||
|
||||
def get_serial_number(self):
|
||||
raise NotImplemented
|
||||
raise NotImplementedError
|
||||
|
||||
def get_manufacturer(self):
|
||||
raise NotImplemented
|
||||
|
||||
raise NotImplementedError
|
||||
|
||||
def get_firmware_version(self):
|
||||
raise NotImplemented
|
||||
raise NotImplementedError
|
||||
|
||||
class Raid():
|
||||
def get_controllers(self):
|
||||
raise NotImplemented
|
||||
raise NotImplementedError
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue