pep8 fixes

This commit is contained in:
Solvik Blum 2019-08-20 17:27:31 +02:00
parent c508fa17f0
commit 4afd3b9170
No known key found for this signature in database
GPG key ID: CC12B3DC262B6C47
4 changed files with 22 additions and 12 deletions

View file

@ -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