Content deleted Content added
m cleaning up, typo(s) fixed: newly- → newly using AWB |
m →Python: added a missing ":" |
||
Line 500:
instance = super(ExampleClass, cls).__new__(cls)
return instance
def __init__(self, value):
print("Initialising instance...")
self.payload = value
|