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:
andrew000 2026-02-11 11:05:20 +02:00
parent f9ba9e37c6
commit 34528c95d5
No known key found for this signature in database
GPG key ID: FE06E474CBF9C85D
11 changed files with 819 additions and 786 deletions

View file

@ -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()