Remove known first party from isort's config

This commit is contained in:
Michael Käufl 2020-10-20 15:11:34 +02:00
parent 189f763a55
commit 919865815f
No known key found for this signature in database
GPG Key ID: 30274591B981122A
4 changed files with 3 additions and 7 deletions

View File

@ -5,7 +5,6 @@ max-line-length = 120
[isort]
profile = black
known_first_party = channels,daphne,asgiref,channels_redis,http_base,http_strategies
[tool:pytest]
testpaths = tests

View File

@ -3,10 +3,9 @@
import collections
from urllib import parse
from hypothesis import assume, given, settings
import http_strategies
from http_base import DaphneTestCase
from hypothesis import assume, given, settings
class TestHTTPRequest(DaphneTestCase):

View File

@ -1,9 +1,8 @@
# coding: utf8
from hypothesis import given, settings
import http_strategies
from http_base import DaphneTestCase
from hypothesis import given, settings
class TestHTTPResponse(DaphneTestCase):

View File

@ -4,10 +4,9 @@ import collections
import time
from urllib import parse
from hypothesis import given, settings
import http_strategies
from http_base import DaphneTestCase, DaphneTestingInstance
from hypothesis import given, settings
class TestWebsocket(DaphneTestCase):