Fix noqa ref and drop erroneous flags for isort
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2020-07-07 15:53:58 +02:00
parent fe1bda9817
commit 44f290af50
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
"""hypercore-crypto module.""" """hypercore-crypto module."""
from hypercore_crypto.crypto import ( from hypercore_crypto.crypto import ( # noqa
data, data,
discovery_key, discovery_key,
key_pair, key_pair,
@ -10,4 +10,4 @@ from hypercore_crypto.crypto import (
sign, sign,
tree, tree,
verify, verify,
) # noqa )

View File

@ -63,7 +63,7 @@ commands = flake8 {posargs:--max-line-length 80} hypercore_crypto/ test/
[testenv:sort] [testenv:sort]
skipdist = True skipdist = True
deps = isort deps = isort
commands = isort {posargs:-c} -sp hypercore_crypto/ test/ commands = isort {posargs:-c} hypercore_crypto/ test/
[testenv:format] [testenv:format]
skipdist = True skipdist = True