Skip to content

Commit 487369b

Browse files
committed
Run isort
1 parent 0cc4d40 commit 487369b

File tree

5 files changed

+9
-18
lines changed

5 files changed

+9
-18
lines changed

authzed/api/v1/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
from typing import Callable, Any
21
import asyncio
2+
from typing import Any, Callable
33

44
import grpc
55
import grpc.aio
6-
76
from grpc_interceptor import ClientCallDetails, ClientInterceptor
87

98
from authzed.api.v1.core_pb2 import (

tests/conftest.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
import pytest
21
import uuid
32

3+
import pytest
4+
45

56
@pytest.fixture(scope="function")
67
def token():

tests/insecure_client_test.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
import pytest
21
import grpc
2+
import pytest
33

4-
from authzed.api.v1 import (
5-
InsecureClient,
6-
SyncClient,
7-
AsyncClient,
8-
)
4+
from authzed.api.v1 import AsyncClient, InsecureClient, SyncClient
95
from grpcutil import insecure_bearer_token_credentials
106

117
from .calls import write_test_schema

tests/utils.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
from inspect import isawaitable
2-
from typing import (
3-
TypeVar,
4-
List,
5-
Union,
6-
Iterable,
7-
AsyncIterable,
8-
)
2+
from typing import AsyncIterable, Iterable, List, TypeVar, Union
93

104
T = TypeVar("T")
115

tests/v1_test.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import asyncio
22
import uuid
3-
from typing import Any, Literal, List
3+
from typing import Any, List, Literal
44

55
import pytest
66
from google.protobuf.struct_pb2 import Struct
@@ -27,9 +27,10 @@
2727
WriteRelationshipsRequest,
2828
WriteSchemaRequest,
2929
)
30+
from grpcutil import insecure_bearer_token_credentials
31+
3032
from .calls import write_test_schema
3133
from .utils import maybe_async_iterable_to_list, maybe_await
32-
from grpcutil import insecure_bearer_token_credentials
3334

3435

3536
@pytest.fixture()

0 commit comments

Comments
 (0)