Évitez l'auto-python en rendant les fonctions de classe statiques
class A(object):
@staticmethod
def stat_meth():
print("Look no self was passed")
>>> a = A()
>>> a.stat_meth()
Look no self was passed
ap_Cooperative_dev