Closed Huyston closed 2 years ago
class Test(): float lol = [] def new(): .lol += 1 print(.lol) a = Test()
Fails, while this works:
class Test(): float lol = [] def new(a=1): .lol += 1 print(.lol) a = Test()
Fails, while this works: