We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb99fb1 commit ceaaea5Copy full SHA for ceaaea5
.githooks/pre-push
@@ -1,3 +1,4 @@
1
#!/bin/bash
2
3
+make clippy
4
cargo test --features testing
src/lib.rs
@@ -106,6 +106,7 @@ static CALL_SOON: OnceCell<PyObject> = OnceCell::new();
106
static CREATE_TASK: OnceCell<PyObject> = OnceCell::new();
107
static CREATE_FUTURE: OnceCell<PyObject> = OnceCell::new();
108
109
+#[allow(clippy::needless_doctest_main)]
110
/// Wraps the provided function with the initialization and finalization for PyO3 Asyncio
111
///
112
/// This function **_MUST_** be called from the main thread.
0 commit comments