Skip to content

Commit bd9d98e

Browse files
committed
no idea what rust did here
1 parent 8b7634c commit bd9d98e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/src/http_client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ fn get_runtime<'a>(reactor: &Bound<'a, PyAny>) -> PyResult<PyRef<'a, PyTokioRunt
137137
static DEFER: OnceCell<PyObject> = OnceCell::new();
138138

139139
/// Access to the `twisted.internet.defer` module.
140-
fn defer(py: Python<'_>) -> PyResult<&Bound<PyAny>> {
140+
fn defer(py: Python<'_>) -> PyResult<&Bound<'_, PyAny>> {
141141
Ok(DEFER
142142
.get_or_try_init(|| py.import("twisted.internet.defer").map(Into::into))?
143143
.bind(py))

0 commit comments

Comments
 (0)