models.py
def operation(argument):
#Operation
return variable
class X(models.Model)
a = models ...
b = models ...
I am trying to import operation in my views.py .. When I try using
from project.models import operation
But then I get the following error
ImportError: cannot import name operation

def operation: '''Operations''' return variable class X(models.Model): # #– melsk Jun 22 '11 at 16:20