third_party.pylibs.pylint.src/tests/data/suppliermodule_test.py
2019-06-20 10:02:14 +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