diff --git a/setup.cfg b/setup.cfg index b372a26..86a0074 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,12 +10,6 @@ known_django=django known_first_party=turbo_allauth sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER -import_heading_stdlib=Standard Library -import_heading_django=Django -import_heading_thirdparty=Third Party Libraries -import_heading_firstparty=Django Turbo Response -import_heading_localfolder=Local - order_by_type=true # Black compat diff --git a/setup.py b/setup.py index b1000de..3ae391a 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,7 @@ #!/usr/bin/env python -# Third Party Libraries from setuptools import find_packages, setup -version = "0.0.6" +version = "0.0.7" setup( name="django-turbo-allauth", diff --git a/src/turbo_allauth/apps.py b/src/turbo_allauth/apps.py index efccbe3..7b720f3 100644 --- a/src/turbo_allauth/apps.py +++ b/src/turbo_allauth/apps.py @@ -1,4 +1,3 @@ -# Django from django.apps import AppConfig diff --git a/src/turbo_allauth/urls.py b/src/turbo_allauth/urls.py index ec15675..965200d 100644 --- a/src/turbo_allauth/urls.py +++ b/src/turbo_allauth/urls.py @@ -1,7 +1,5 @@ -# Django from django.urls import include, path, re_path -# Local from .views import account, socialaccount urlpatterns = [ diff --git a/src/turbo_allauth/views/account.py b/src/turbo_allauth/views/account.py index 8b5b610..7a15a3c 100644 --- a/src/turbo_allauth/views/account.py +++ b/src/turbo_allauth/views/account.py @@ -1,4 +1,3 @@ -# Third Party Libraries from allauth.account import views as account_views from turbo_response.mixins import TurboFormAdapterMixin diff --git a/src/turbo_allauth/views/socialaccount.py b/src/turbo_allauth/views/socialaccount.py index 654cd06..9d878a4 100644 --- a/src/turbo_allauth/views/socialaccount.py +++ b/src/turbo_allauth/views/socialaccount.py @@ -1,4 +1,3 @@ -# Third Party Libraries from allauth.socialaccount import views as socialaccount_views from turbo_response.mixins import TurboFormAdapterMixin