Skip to content

Commit 906082a

Browse files
committed
fix: tox file and sort imports
1 parent e292dce commit 906082a

8 files changed

Lines changed: 11 additions & 20 deletions

File tree

packages/polywrap-client/tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ commands =
1010
commands =
1111
isort --check-only polywrap_client
1212
black --check polywrap_client
13+
pycln --check polywrap_core --disable-all-dunder-policy
1314
pylint polywrap_client
1415
pydocstyle polywrap_client
1516

@@ -22,9 +23,8 @@ commands =
2223
bandit -r polywrap_client -c pyproject.toml
2324

2425
[testenv:dev]
25-
basepython = python3.10
26-
usedevelop = True
2726
commands =
2827
isort polywrap_client
2928
black polywrap_client
29+
pycln polywrap_core --disable-all-dunder-policy
3030

packages/polywrap-core/tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ commands =
2323
bandit -r polywrap_core -c pyproject.toml
2424

2525
[testenv:dev]
26-
basepython = python3.10
27-
usedevelop = True
2826
commands =
2927
isort polywrap_core
3028
black polywrap_core

packages/polywrap-manifest/tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ commands =
2727
bandit -r polywrap_manifest -c pyproject.toml
2828

2929
[testenv:dev]
30-
basepython = python3.10
31-
usedevelop = True
3230
commands =
3331
isort polywrap_manifest
3432
black polywrap_manifest

packages/polywrap-msgpack/tox.ini

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ commands =
1010
commands =
1111
isort --check-only polywrap_msgpack
1212
black --check polywrap_msgpack
13-
pycln --check polywrap_msgpack
13+
pycln --check polywrap_msgpack --disable-all-dunder-policy
1414
pylint polywrap_msgpack
1515
pydocstyle polywrap_msgpack
1616

@@ -23,9 +23,7 @@ commands =
2323
bandit -r polywrap_msgpack -c pyproject.toml
2424

2525
[testenv:dev]
26-
basepython = python3.10
27-
usedevelop = True
2826
commands =
2927
isort polywrap_msgpack
3028
black polywrap_msgpack
31-
pycln polywrap_msgpack
29+
pycln polywrap_msgpack --disable-all-dunder-policy

packages/polywrap-plugin/tox.ini

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ commands =
1010
commands =
1111
isort --check-only polywrap_plugin
1212
black --check polywrap_plugin
13+
pycln --check polywrap_plugin --disable-all-dunder-policy
1314
pylint polywrap_plugin
1415
pydocstyle polywrap_plugin
1516

@@ -22,9 +23,7 @@ commands =
2223
bandit -r polywrap_plugin -c pyproject.toml
2324

2425
[testenv:dev]
25-
basepython = python3.10
26-
usedevelop = True
2726
commands =
2827
isort polywrap_plugin
2928
black polywrap_plugin
30-
29+
pycln polywrap_plugin --disable-all-dunder-policy
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""This package contains URI resolvers for polywrap-client."""
2-
from .types import *
32
from .errors import *
43
from .resolvers import *
4+
from .types import *
55
from .utils import *

packages/polywrap-uri-resolvers/tox.ini

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ commands =
1010
commands =
1111
isort --check-only polywrap_uri_resolvers
1212
black --check polywrap_uri_resolvers
13+
pycln --check polywrap_uri_resolvers --disable-all-dunder-policy
1314
pylint polywrap_uri_resolvers
1415
pydocstyle polywrap_uri_resolvers
15-
pycln polywrap_wasm --disable-all-dunder-policy --check
1616

1717
[testenv:typecheck]
1818
commands =
@@ -23,10 +23,8 @@ commands =
2323
bandit -r polywrap_uri_resolvers -c pyproject.toml
2424

2525
[testenv:dev]
26-
basepython = python3.10
27-
usedevelop = True
2826
commands =
2927
isort polywrap_uri_resolvers
3028
black polywrap_uri_resolvers
31-
pycln polywrap_wasm --disable-all-dunder-policy
29+
pycln polywrap_uri_resolvers --disable-all-dunder-policy
3230

packages/polywrap-wasm/tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ commands =
1010
commands =
1111
isort --check-only polywrap_wasm
1212
black --check polywrap_wasm
13+
pycln --check polywrap_wasm --disable-all-dunder-policy
1314
pylint polywrap_wasm
1415
pydocstyle polywrap_wasm
1516

@@ -22,9 +23,8 @@ commands =
2223
bandit -r polywrap_wasm -c pyproject.toml
2324

2425
[testenv:dev]
25-
basepython = python3.10
26-
usedevelop = True
2726
commands =
2827
isort polywrap_wasm
2928
black polywrap_wasm
29+
pycln polywrap_wasm --disable-all-dunder-policy
3030

0 commit comments

Comments
 (0)