Fix flake8 warnings

This commit fixes all warnings created by flake8 by removing unused
imports and variable assignments. Some wrongly indented lines are now
indented correctly.
This commit is contained in:
Jan Dittberner 2015-12-05 13:47:41 +00:00
parent 30600ce107
commit fb1f31a9bc
12 changed files with 50 additions and 49 deletions

View file

@ -10,8 +10,6 @@ import logging
import os
import six
from celery import group
from django.db import models, transaction
from django.conf import settings
from django.core.exceptions import ValidationError
@ -25,8 +23,6 @@ from model_utils.models import TimeStampedModel
from passlib.hash import sha512_crypt
from passlib.utils import generate_password
from taskresults.models import TaskResult
_LOGGER = logging.getLogger(__name__)