remove unused imports
This commit is contained in:
parent
107847a4bb
commit
a6762531e8
2 changed files with 1 additions and 7 deletions
|
@ -1,14 +1,10 @@
|
||||||
import logging
|
import logging
|
||||||
import io
|
|
||||||
import os.path
|
|
||||||
import tarfile
|
|
||||||
import base64
|
|
||||||
import json
|
import json
|
||||||
import requests
|
import requests
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from flask.ext.mail import Message
|
from flask.ext.mail import Message
|
||||||
from app import mail, app, get_app_url
|
from app import mail, app
|
||||||
from data import model
|
from data import model
|
||||||
from workers.worker import JobException
|
from workers.worker import JobException
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
import argparse
|
|
||||||
import logging
|
import logging
|
||||||
import json
|
import json
|
||||||
|
|
||||||
from app import app
|
from app import app
|
||||||
from data import model
|
|
||||||
from data.database import configure, RepositoryNotification, ExternalNotificationMethod
|
from data.database import configure, RepositoryNotification, ExternalNotificationMethod
|
||||||
|
|
||||||
configure(app.config)
|
configure(app.config)
|
||||||
|
|
Reference in a new issue