remove unneeded imports from info app

This commit is contained in:
Thomas Steen Rasmussen 2018-03-04 14:35:27 +01:00
parent 9e82013ca0
commit 81abf8db36
3 changed files with 2 additions and 7 deletions

View File

@ -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

View File

@ -1,3 +0,0 @@
from django.test import TestCase
# Create your tests here.

View File

@ -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