Skip to content

Commit

Permalink
[fix] PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
dyohan9 committed Nov 4, 2019
1 parent 685b3da commit 0aba408
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions bothub/api/v2/tests/test_account.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
import json

from django.test import TestCase
from django.test import RequestFactory
from django.test import TestCase
from django.test.client import MULTIPART_CONTENT
from rest_framework import status

from bothub.authentication.models import User
from bothub.common import languages
from bothub.common.models import Repository
from bothub.common.models import RepositoryExample

from ..account.views import RegisterUserViewSet
from ..account.views import LoginViewSet
from .utils import create_user_and_token
from ..account.views import ChangePasswordViewSet
from ..account.views import LoginViewSet
from ..account.views import MyUserProfileViewSet
from ..account.views import RegisterUserViewSet
from ..account.views import RequestResetPasswordViewSet
from ..account.views import ResetPasswordViewSet
from ..account.views import UserProfileViewSet
from ..account.views import MyUserProfileViewSet

from .utils import create_user_and_token


class LoginTestCase(TestCase):
Expand Down

0 comments on commit 0aba408

Please sign in to comment.