9 lines
127 B
Python
9 lines
127 B
Python
class MyClass:
|
|
ImportError = 4
|
|
|
|
def __init__(self):
|
|
self.float = 5 # is fine
|
|
|
|
def str(self):
|
|
pass
|