Skip to content

Commit 3a7583a

Browse files
committed
chore: Delint
1 parent 6714654 commit 3a7583a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/toolbox-core/tests/test_e2e.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ async def test_run_tool_unauth_with_auth(
139139
match=rf"Validation failed for tool 'get-row-by-id': unused auth tokens: my-test-auth",
140140
):
141141
await toolbox.load_tool(
142-
"get-row-by-id", auth_token_getters={"my-test-auth": lambda: auth_token2}
142+
"get-row-by-id",
143+
auth_token_getters={"my-test-auth": lambda: auth_token2},
143144
)
144145

145146
async def test_run_tool_no_auth(self, toolbox: ToolboxClient):

packages/toolbox-core/tests/test_sync_e2e.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ def test_run_tool_unauth_with_auth(
121121
match=rf"Validation failed for tool 'get-row-by-id': unused auth tokens: my-test-auth",
122122
):
123123
toolbox.load_tool(
124-
"get-row-by-id", auth_token_getters={"my-test-auth": lambda: auth_token2}
124+
"get-row-by-id",
125+
auth_token_getters={"my-test-auth": lambda: auth_token2},
125126
)
126127

127128
def test_run_tool_no_auth(self, toolbox: ToolboxSyncClient):

0 commit comments

Comments
 (0)