Skip to content

Commit eb21c9c

Browse files
committed
chore: short
1 parent fe1c715 commit eb21c9c

File tree

1 file changed

+1
-2
lines changed
  • packages/cubejs-backend-native/src/python

1 file changed

+1
-2
lines changed

packages/cubejs-backend-native/src/python/runtime.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,7 @@ impl PyRuntime {
100100

101101
for arg in args {
102102
if arg.is_kwarg() {
103-
let as_py = arg.into_py_dict(py)?;
104-
py_kwargs = Some(as_py);
103+
py_kwargs = Some(arg.into_py_dict(py)?);
105104
} else {
106105
prep_tuple.push(arg.into_py(py)?);
107106
}

0 commit comments

Comments
 (0)