I'm trying to call a static method of a class from a different module and getting:
AttributeError: ClassObject instance has no attribute 'foo1'
Things are structures like this:
a.py file content:
class Conf(): def __init__(self,......): . . . @staticmethod def foo1(): . . . b.py file content:
from a import Conf Conf.foo1() What am I doing wrong?
object:class Conf(object):