How would I call a static method from another module/app (in Django)? For example I declare the following static method
class SomeClass (object): @staticmethod def SomeStaticMethod (firstArg, **kwargs): # do something and in another class I want to use it like so
SomeClass.SomeStaticMethod ('first', second=2, third='three', fourth=4) I tried to import, but got a NameError:global name 'SomeClass' is not defined
import myapp.SomeClass