Skip to content

Commit 15cdc69

Browse files
authored
fix lint reported in Rust 1.89 (#213)
1 parent a05dc81 commit 15cdc69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/jiter/src/py_lossless_float.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,6 @@ impl LosslessFloat {
8989

9090
static DECIMAL_TYPE: GILOnceCell<Py<PyType>> = GILOnceCell::new();
9191

92-
pub fn get_decimal_type(py: Python) -> PyResult<&Bound<'_, PyType>> {
92+
pub fn get_decimal_type(py: Python<'_>) -> PyResult<&Bound<'_, PyType>> {
9393
DECIMAL_TYPE.import(py, "decimal", "Decimal")
9494
}

0 commit comments

Comments
 (0)