From 5e49b3f7ffe5142e2c6064c3813cf0f2868831c1 Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Wed, 3 Jul 2024 17:29:52 +0200 Subject: [PATCH] Lint --- docs_src/django_orm/polls/models.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs_src/django_orm/polls/models.py b/docs_src/django_orm/polls/models.py index 8ac23fabb..380716f93 100644 --- a/docs_src/django_orm/polls/models.py +++ b/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) -