Skip to content

Commit

Permalink
fix: ignore type error
Browse files Browse the repository at this point in the history
  • Loading branch information
scarf005 committed Nov 14, 2024
1 parent 5ff1c83 commit adf2c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polars/series/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1871,7 +1871,7 @@ export function _Series(_s: any): Series {
},
};

return new Proxy(series, {
return new Proxy(series as unknown as Series, {
get: (target, prop, receiver) => {
if (typeof prop !== "symbol" && !Number.isNaN(Number(prop))) {
return target.get(Number(prop));
Expand Down

0 comments on commit adf2c51

Please sign in to comment.