Skip to content

Commit 9fe14e6

Browse files
committed
chore: fix
1 parent 5fe8a23 commit 9fe14e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cubejs-backend-native/src/cross/clrepr_python.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ impl CLRepr {
144144
})
145145
}
146146

147-
fn into_py_dict_impl(obj: CLReprObject, py: Python) -> Result<&PyDict, PyErr> {
147+
fn into_py_dict_impl(obj: CLReprObject, py: Python<'_>) -> Result<&PyDict, PyErr> {
148148
let r = PyDict::new(py);
149149

150150
for (k, v) in obj.into_iter() {
@@ -213,7 +213,7 @@ impl CLRepr {
213213
})
214214
}
215215

216-
pub fn into_py_dict(self, py: Python) -> Result<&PyDict, PyErr> {
216+
pub fn into_py_dict(self, py: Python<'_>) -> Result<&PyDict, PyErr> {
217217
Ok(match self {
218218
CLRepr::Object(obj) => Self::into_py_dict_impl(obj, py)?,
219219
other => {

0 commit comments

Comments
 (0)