Fix import path

This commit is contained in:
Luke Murphy 2020-08-09 11:07:41 +02:00
parent 2c478d4602
commit 334028c41f
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
6 changed files with 5 additions and 5 deletions

View File

@ -29,7 +29,7 @@ include = '\.pyi?$'
[tool.isort] [tool.isort]
include_trailing_comma = true include_trailing_comma = true
known_first_party = "hyperspace-rpc" known_first_party = "hyperspace_rpc"
line_length = 80 line_length = 80
multi_line_output = 3 multi_line_output = 3
skip = ".tox" skip = ".tox"
@ -51,20 +51,20 @@ isolated_build = True
[testenv:lint] [testenv:lint]
skipdist = True skipdist = True
deps = flake8 deps = flake8
commands = flake8 {posargs:--max-line-length 80} hyperspace-rpc/ commands = flake8 {posargs:--max-line-length 80} hyperspace_rpc/
[testenv:sort] [testenv:sort]
skipdist = True skipdist = True
deps = isort deps = isort
commands = isort {posargs:-c} hyperspace-rpc/ commands = isort {posargs:-c} hyperspace_rpc/
[testenv:format] [testenv:format]
skipdist = True skipdist = True
deps = black deps = black
commands = black {posargs:--check} hyperspace-rpc/ commands = black {posargs:--check} hyperspace_rpc/
[testenv:type] [testenv:type]
skipdist = True skipdist = True
deps = mypy deps = mypy
commands = mypy {posargs:--ignore-missing-imports} hyperspace-rpc/ commands = mypy {posargs:--ignore-missing-imports} hyperspace_rpc/
""" """