File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ commands =
1010commands =
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
2726commands =
2827 isort polywrap_client
2928 black polywrap_client
29+ pycln polywrap_core --disable-all-dunder-policy
3030
Original file line number Diff line number Diff 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
2826commands =
2927 isort polywrap_core
3028 black polywrap_core
Original file line number Diff line number Diff 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
3230commands =
3331 isort polywrap_manifest
3432 black polywrap_manifest
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ commands =
1010commands =
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
2826commands =
2927 isort polywrap_msgpack
3028 black polywrap_msgpack
31- pycln polywrap_msgpack
29+ pycln polywrap_msgpack --disable-all-dunder-policy
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ commands =
1010commands =
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
2726commands =
2827 isort polywrap_plugin
2928 black polywrap_plugin
30-
29+ pycln polywrap_plugin --disable-all-dunder-policy
Original file line number Diff line number Diff line change 11"""This package contains URI resolvers for polywrap-client."""
2- from .types import *
32from .errors import *
43from .resolvers import *
4+ from .types import *
55from .utils import *
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ commands =
1010commands =
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]
1818commands =
@@ -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
2826commands =
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
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ commands =
1010commands =
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
2726commands =
2827 isort polywrap_wasm
2928 black polywrap_wasm
29+ pycln polywrap_wasm --disable-all-dunder-policy
3030
You can’t perform that action at this time.
0 commit comments