Fix references for async-busy-wait (#14775)

This commit is contained in:
Well404
2024-12-05 01:05:49 +08:00
committed by GitHub
parent af43bd4b0f
commit 04c887c8fc

View File

@@ -35,8 +35,8 @@ use crate::rules::flake8_async::helpers::AsyncModule;
///
/// ## References
/// - [`asyncio` events](https://docs.python.org/3/library/asyncio-sync.html#asyncio.Event)
/// - [`anyio` events](https://trio.readthedocs.io/en/latest/reference-core.html#trio.Event)
/// - [`trio` events](https://anyio.readthedocs.io/en/latest/api.html#anyio.Event)
/// - [`anyio` events](https://anyio.readthedocs.io/en/latest/api.html#anyio.Event)
/// - [`trio` events](https://trio.readthedocs.io/en/latest/reference-core.html#trio.Event)
#[derive(ViolationMetadata)]
pub(crate) struct AsyncBusyWait {
module: AsyncModule,