Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Oct 22, 2024
1 parent 76d160b commit f360cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-plan/src/dsl/python_udf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl PythonUdfExpression {
// Handle pickle metadata
let use_cloudpickle = buf[0];
if use_cloudpickle != 0 {
let ser_py_version = &buf[..2];
let ser_py_version = &buf[1..3];
let cur_py_version = *PYTHON3_VERSION;
polars_ensure!(
ser_py_version == cur_py_version,
Expand Down

0 comments on commit f360cd1

Please sign in to comment.