Django'FloatField'不可调用

时间:2019-10-10 06:29:17

标签: django django-models pycharm

我在模型字段声明Problem Screenshot

中不断得到这些令人讨厌的亮点

当我将鼠标悬停在它上面时,它说“ FloatField”是不可调用的。除CharField以外的所有字段类型都在发生这种情况。该项目运行良好,我能够将模型迁移到DB,但是这些要点令人讨厌。我该如何摆脱它们?请告知。

from django.db import models

class ProjectModel(models.Model):
    name = models.CharField(max_length=50)
    project_id = models.IntegerField(blank=True)
    discipline_id = models.IntegerField(blank=True)
    demo_field = models.FloatField(verbose_name='flow(kg/s)', null=True, blank=True)

    def __str__(self):
        return str(self.id)

0 个答案:

没有答案