fix black linting

pull/660/head v0.4.6
Simon 4 months ago
parent 0d863ef557
commit 0ff27ebfb9
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -13,6 +13,7 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import include, path

@ -1,4 +1,5 @@
"""custom models"""
from django.contrib.auth.models import (
AbstractBaseUser,
BaseUserManager,

@ -3,6 +3,7 @@ functionality:
- wrapper around requests to call elastic search
- reusable search_after to extract total index
"""
# pylint: disable=missing-timeout
import json

@ -6,7 +6,6 @@ Functionality:
- calculate pagination values
"""
from api.src.search_processor import SearchProcess
from home.src.es.connect import ElasticWrap

@ -3,6 +3,7 @@ Functionality:
- all views for home app
- holds base classes to inherit from
"""
import enum
import urllib.parse
from time import sleep

Loading…
Cancel
Save