mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Migrate to uv build system
- Remove Makefile - Add Justfile - Bump deps - Update .editorconfig - Update contributing.rst - Add `1770.misc.rst` - Reformat
This commit is contained in:
parent
f9ba9e37c6
commit
34528c95d5
11 changed files with 819 additions and 786 deletions
|
|
@ -178,8 +178,8 @@ class TestSimpleRequestHandler:
|
|||
new_callable=AsyncMock,
|
||||
) as mocked_silent_call_request:
|
||||
method_called_event = asyncio.Event()
|
||||
mocked_silent_call_request.side_effect = (
|
||||
lambda *args, **kwargs: method_called_event.set()
|
||||
mocked_silent_call_request.side_effect = lambda *args, **kwargs: (
|
||||
method_called_event.set()
|
||||
)
|
||||
|
||||
handler_event.clear()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue