Bump dev dependencies (#1512)

* Bump dev dependencies

* Pre-commit py3.8 support

* Pre-commit py3.8 support (v3.5+)

* Mute mypy python version bug
This commit is contained in:
Oleg A 2024-06-14 20:11:08 +03:00 committed by GitHub
parent 0df95a0276
commit 7760ab1d0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 92 additions and 75 deletions

View file

@ -992,17 +992,13 @@ class TestDispatcher:
pytest.fail("Expected 'Detected slow response into webhook' warning.")
def test_specify_updates_calculation(self):
def simple_msg_handler() -> None:
...
def simple_msg_handler() -> None: ...
def simple_callback_query_handler() -> None:
...
def simple_callback_query_handler() -> None: ...
def simple_poll_handler() -> None:
...
def simple_poll_handler() -> None: ...
def simple_edited_msg_handler() -> None:
...
def simple_edited_msg_handler() -> None: ...
dispatcher = Dispatcher()
dispatcher.message.register(simple_msg_handler)