Skip to content

Commit 7fb4baf

Browse files
fix: linter error
1 parent d00dd10 commit 7fb4baf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/client/chats_api/test_create_thread.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,10 @@ async def test__create_thread__botx_error_raised(
205205
# - Act -
206206
async with lifespan_wrapper(built_bot) as bot:
207207
with pytest.raises(expected_exc_type) as exc:
208-
await bot.create_thread(bot_id=bot_id, sync_id=UUID(sync_id))
208+
await bot.create_thread(
209+
bot_id=bot_id,
210+
sync_id=UUID(sync_id),
211+
)
209212

210213
# - Assert -
211214
assert endpoint.called

0 commit comments

Comments
 (0)