python-by-example-150-chall.../venv/lib/python3.6/site-packages/pylint/test/data/suppliermodule_test.py

11 lines
198 B
Python
Raw Normal View History

2019-08-04 20:26:35 +08:00
""" file suppliermodule.py """
class Interface:
def get_value(self):
raise NotImplementedError
def set_value(self, value):
raise NotImplementedError
class DoNothing: pass