8th day of python challenges 111-117
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
""" file suppliermodule.py """
|
||||
|
||||
class Interface:
|
||||
def get_value(self):
|
||||
raise NotImplementedError
|
||||
|
||||
def set_value(self, value):
|
||||
raise NotImplementedError
|
||||
|
||||
class DoNothing: pass
|
||||
Reference in New Issue
Block a user