4 lines
83 B
Python
4 lines
83 B
Python
|
|
class MyVirtual(object):
|
||
|
|
def __init__(self):
|
||
|
|
raise NotImplementedError
|