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 5fe8a23 commit 9fe14e6Copy full SHA for 9fe14e6
packages/cubejs-backend-native/src/cross/clrepr_python.rs
@@ -144,7 +144,7 @@ impl CLRepr {
144
})
145
}
146
147
- fn into_py_dict_impl(obj: CLReprObject, py: Python) -> Result<&PyDict, PyErr> {
+ fn into_py_dict_impl(obj: CLReprObject, py: Python<'_>) -> Result<&PyDict, PyErr> {
148
let r = PyDict::new(py);
149
150
for (k, v) in obj.into_iter() {
@@ -213,7 +213,7 @@ impl CLRepr {
213
214
215
216
- pub fn into_py_dict(self, py: Python) -> Result<&PyDict, PyErr> {
+ pub fn into_py_dict(self, py: Python<'_>) -> Result<&PyDict, PyErr> {
217
Ok(match self {
218
CLRepr::Object(obj) => Self::into_py_dict_impl(obj, py)?,
219
other => {
0 commit comments