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?