Skip to content

Commit

Permalink
Fix flake8 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
taranjeet committed Mar 14, 2016
1 parent 5cd0d3c commit 39e28f5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion wye/base/management/commands/sample_data.py
Expand Up @@ -71,7 +71,7 @@ def handle(self, *args, **options):
self.stdout.write(' Creating Sample Workshop')
self.create_sample_workshops(user)
user_email = EmailAddress.objects.create(
email=user.email, user=user, verified=True)
email=user.email, user=user, verified=True)
user_email.save()

def create_user(self, counter=None, **kwargs):
Expand Down
1 change: 0 additions & 1 deletion wye/profiles/views.py
Expand Up @@ -6,7 +6,6 @@
from django.shortcuts import redirect, render
from django.template import Context, loader
from django.views.generic import UpdateView
from django.views.generic.edit import FormView
from django.views.generic.list import ListView

from wye.base.constants import WorkshopStatus
Expand Down

0 comments on commit 39e28f5

Please sign in to comment.