Ich habe diesen Code: class A(object): @staticmethod def open(): return 123 @staticmethod def proccess(): return 456 switch = { 1: open, 2: proccess, } obj = A.switch[1]() Wenn ich dies ausführe, erhalte ich immer wieder den Fehler: TypeError: 'staticmethod' object is not callable wie man es löst?...