From 81abf8db36fcf2f80119b893a9c276f93e694251 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Sun, 4 Mar 2018 14:35:27 +0100 Subject: [PATCH] remove unneeded imports from info app --- src/info/models.py | 2 +- src/info/tests.py | 3 --- src/info/views.py | 4 +--- 3 files changed, 2 insertions(+), 7 deletions(-) delete mode 100644 src/info/tests.py diff --git a/src/info/models.py b/src/info/models.py index e166b2d7..ac6964c2 100644 --- a/src/info/models.py +++ b/src/info/models.py @@ -1,5 +1,5 @@ from django.db import models -from utils.models import CreatedUpdatedModel, CampRelatedModel +from utils.models import CampRelatedModel from django.core.exceptions import ValidationError diff --git a/src/info/tests.py b/src/info/tests.py deleted file mode 100644 index 7ce503c2..00000000 --- a/src/info/tests.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.test import TestCase - -# Create your tests here. diff --git a/src/info/views.py b/src/info/views.py index 08e14ea5..a9db1920 100644 --- a/src/info/views.py +++ b/src/info/views.py @@ -1,6 +1,4 @@ -from django.shortcuts import render -from django.views.generic import ListView, DetailView -from django.utils import timezone +from django.views.generic import ListView from .models import * from camps.mixins import CampViewMixin