remove unused imports

This commit is contained in:
Jimmy Zelinskie 2014-12-16 12:16:49 -05:00
parent 107847a4bb
commit a6762531e8
2 changed files with 1 additions and 7 deletions

View file

@ -1,14 +1,10 @@
import logging
import io
import os.path
import tarfile
import base64
import json
import requests
import re
from flask.ext.mail import Message
from app import mail, app, get_app_url
from app import mail, app
from data import model
from workers.worker import JobException

View file

@ -1,9 +1,7 @@
import argparse
import logging
import json
from app import app
from data import model
from data.database import configure, RepositoryNotification, ExternalNotificationMethod
configure(app.config)