Commit 750dbb11 authored by Claude Paroz's avatar Claude Paroz
Browse files

Removed unneeded null param to ManyToManyField

parent 90720d54
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -249,7 +249,7 @@ class Thingy(models.Model):


class M2MToSelf(models.Model):
    parent = models.ManyToManyField("self", blank=True, null=True)
    parent = models.ManyToManyField("self", blank=True)


@python_2_unicode_compatible