I am using PyCharm. And in models.py I have such model:

class TaricCode(models.Model):
    code  = models.IntegerField(primary_key=True, verbose_name="Code")
    description = models.CharField(max_length=256, blank=True, verbose_name="Description")

But in views.py whem I write: tc = TaricCode.objects.all()

objects is underlined as error "unresolved attribute reference" and code complete doesn't work for it. And when I run application it works. What's wrong?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Make sure that you have line

from django.db import models

And that Django package is actually in your Python path as set in PyCharm.

link|improve this answer
Yes, you were right. I set path to my virtualenv interpreter only in "Run/Debug Configuration" and also I should install similar setting in "Settings" -> "Python Interpreter". Thanks. Sorry for disturbing. – Ideviantik May 18 '11 at 15:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.