Skip to content
Snippets Groups Projects
Commit 740366c2 authored by Bryan BRANCOTTE's avatar Bryan BRANCOTTE
Browse files

Fixing warning fields.W340

parent 0569afff
No related branches found
No related tags found
No related merge requests found
Pipeline #10175 passed
......@@ -373,7 +373,7 @@ class Ppi(AutoFillableModel):
symmetry = models.ForeignKey(Symmetry, models.CASCADE)
diseases = models.ManyToManyField(Disease, null=True, blank=True)
family = models.ForeignKey(PpiFamily, models.CASCADE, null=True, blank=True)
name = models.TextField('PPI name', null=True, blank=True)
name = models.TextField('PPI name', blank=True)
def __str__(self):
return 'PPI #{} on {}'.format(self.id, self.name)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment