fix: correct documentation URLs in README (#446)

This commit is contained in:
Josh Thomas 2025-04-03 14:03:01 -05:00 committed by GitHub
parent 7fc13d3862
commit 0bd01fc1aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -115,7 +115,7 @@ asyncio.run(main())
To define a service on the bus, use the `ServiceInterface` class and decorate class methods to specify DBus methods, properties, and signals with their type signatures. To define a service on the bus, use the `ServiceInterface` class and decorate class methods to specify DBus methods, properties, and signals with their type signatures.
For more information, see the [overview for the high-level service](https://python-dbus-fast.readthedocs.io/en/latest/high-level-service/index.html). For more information, see the [overview for the high-level service](https://dbus-fast.readthedocs.io/en/latest/high-level-service/index.html).
```python ```python
from dbus_fast.service import ServiceInterface, method, dbus_property, signal, Variant from dbus_fast.service import ServiceInterface, method, dbus_property, signal, Variant
@ -168,7 +168,7 @@ asyncio.run(main())
The low-level interface works with DBus messages directly. The low-level interface works with DBus messages directly.
For more information, see the [overview for the low-level interface](https://python-dbus-fast.readthedocs.io/en/latest/low-level-interface/index.html). For more information, see the [overview for the low-level interface](https://dbus-fast.readthedocs.io/en/latest/low-level-interface/index.html).
```python ```python
from dbus_fast.message import Message, MessageType from dbus_fast.message import Message, MessageType
@ -196,7 +196,7 @@ async def main():
asyncio.run(main()) asyncio.run(main())
``` ```
## Projects that use python-dbus-fast ## Projects that use dbus-fast
- [Bluetooth Adapters](https://github.com/bluetooth-devices/bluetooth-adapters) - [Bluetooth Adapters](https://github.com/bluetooth-devices/bluetooth-adapters)