Correct typo in code example (#1694)

This commit is contained in:
Grégoire Seux 2023-02-22 09:46:00 +01:00 committed by GitHub
parent 34e70778a5
commit 559af1c2d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ Example of a correct callback signature:
```python
@callback
def async_correct_callback(msg: msg: ReceiveMessage) -> None:
def async_correct_callback(msg: ReceiveMessage) -> None:
"""Callback example 1."""
...
```