Skip to content

Commit fa850b8

Browse files
committed
Fix import order and remove unused imports
1 parent 784a2aa commit fa850b8

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

src/shellsmith/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
get_submodel_refs,
2323
get_submodel_value,
2424
get_submodels,
25+
is_healthy,
2526
update_shell,
2627
update_submodel,
2728
update_submodel_element,
2829
update_submodel_element_value,
2930
update_submodel_value,
30-
is_healthy,
3131
)
3232
from .clients import AsyncClient, Client
3333
from .upload import upload_aas, upload_aas_folder

tests/api/test_submodels.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
import pytest
2-
from httpx import HTTPStatusError
3-
41
import shellsmith
52
from shellsmith import services
63
from shellsmith.upload import upload_aas_folder

tests/client/test_async_client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import pytest
2-
from shellsmith.clients import AsyncClient
3-
42

5-
import pytest
3+
from shellsmith.clients import AsyncClient
64

75

86
@pytest.mark.asyncio

tests/client/test_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import pytest
2-
from shellsmith.clients import Client, AsyncClient
2+
3+
from shellsmith.clients import Client
34

45

56
def test_sync_client_smoke():

0 commit comments

Comments
 (0)