tptimer/env/lib/python2.7/site-packages/pylint/test/data/suppliermodule_test.py

11 lines
198 B
Python
Raw Normal View History

2018-07-20 05:43:02 +00:00
""" file suppliermodule.py """
class Interface:
def get_value(self):
raise NotImplementedError
def set_value(self, value):
raise NotImplementedError
class DoNothing: pass