remove unneeded imports from ircbot app

This commit is contained in:
Thomas Steen Rasmussen 2018-03-04 14:36:52 +01:00
parent 81abf8db36
commit ad9f9d1581
3 changed files with 1 additions and 5 deletions

View File

@ -1,4 +1,3 @@
from .models import OutgoingIrcMessage
from django.conf import settings
import logging, irc3
logging.basicConfig(level=logging.INFO)

View File

@ -1,5 +1,5 @@
from django.core.exceptions import ValidationError
from utils.models import UUIDModel, CreatedUpdatedModel
from utils.models import CreatedUpdatedModel
from django.db import models
from django.utils import timezone

View File

@ -1,3 +0,0 @@
from django.shortcuts import render
# Create your views here.