1
0
mirror of https://github.com/django/django.git synced 2024-12-22 09:05:43 +00:00

Fixed #34446 -- Removed unneeded and incorrect example in coding style docs.

This commit is contained in:
JiriKr 2023-03-30 10:54:37 +02:00 committed by Mariusz Felisiak
parent 7330408ac3
commit cfe563ffaf

View File

@ -279,15 +279,6 @@ Model style
Don't do this::
class Person(models.Model):
first_name = models.CharField(max_length=20)
last_name = models.CharField(max_length=40)
class Meta:
verbose_name_plural = "people"
Don't do this, either::
class Person(models.Model):
class Meta:
verbose_name_plural = "people"