Browse Source

Lint

pull/11782/head
Patrick Arminio 1 year ago
parent
commit
5e49b3f7ff
Failed to extract signature
  1. 4
      docs_src/django_orm/polls/models.py

4
docs_src/django_orm/polls/models.py

@ -1,7 +1,4 @@
import datetime
from django.db import models
from django.utils import timezone
class Question(models.Model):
@ -13,4 +10,3 @@ class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)

Loading…
Cancel
Save