third_party.pylibs.pylint.src/pylint/test/data/suppliermodule_test.py
2015-02-14 18:13:20 +02:00

11 lines
198 B
Python

""" file suppliermodule.py """
class Interface:
def get_value(self):
raise NotImplementedError
def set_value(self, value):
raise NotImplementedError
class DoNothing: pass