Skip to content

Commit df418d0

Browse files
committed
linting.
1 parent 36ad580 commit df418d0

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

mock_tests/test_users.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ def test_get_user_without_last_used_time(
4040

4141
def handler(request: Request) -> Response:
4242
captured["params"] = dict(request.args)
43-
return Response(json.dumps(USER_DATA_NO_LAST_USED), content_type="application/json", status=200)
43+
return Response(
44+
json.dumps(USER_DATA_NO_LAST_USED), content_type="application/json", status=200
45+
)
4446

4547
weaviate_no_auth_mock.expect_request("/v1/users/db/test-user").respond_with_handler(handler)
4648

@@ -102,7 +104,9 @@ def test_list_all_without_last_used_time(
102104

103105
def handler(request: Request) -> Response:
104106
captured["params"] = dict(request.args)
105-
return Response(json.dumps(USERS_DATA_NO_LAST_USED), content_type="application/json", status=200)
107+
return Response(
108+
json.dumps(USERS_DATA_NO_LAST_USED), content_type="application/json", status=200
109+
)
106110

107111
weaviate_no_auth_mock.expect_request("/v1/users/db").respond_with_handler(handler)
108112

0 commit comments

Comments
 (0)