mirror of
https://github.com/django/django.git
synced 2025-11-03 05:13:23 +00:00
Fixed hanging indentation in various code.
This commit is contained in:
parent
aeb8c38178
commit
362813d628
40 changed files with 266 additions and 232 deletions
|
|
@ -50,8 +50,7 @@ class ChoiceModel(models.Model):
|
|||
choice = models.CharField(max_length=2, blank=True, choices=CHOICES)
|
||||
choice_string_w_none = models.CharField(
|
||||
max_length=2, blank=True, null=True, choices=STRING_CHOICES_WITH_NONE)
|
||||
choice_integer = models.IntegerField(choices=INTEGER_CHOICES, blank=True,
|
||||
null=True)
|
||||
choice_integer = models.IntegerField(choices=INTEGER_CHOICES, blank=True, null=True)
|
||||
|
||||
|
||||
class ChoiceOptionModel(models.Model):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue