Skip to content

Commit ee1b921

Browse files
committed
fix: ignore type error
1 parent 793a10a commit ee1b921

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

polars/series/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1871,7 +1871,7 @@ export function _Series(_s: any): Series {
18711871
},
18721872
};
18731873

1874-
return new Proxy(series, {
1874+
return new Proxy(series as unknown as Series, {
18751875
get: (target, prop, receiver) => {
18761876
if (typeof prop !== "symbol" && !Number.isNaN(Number(prop))) {
18771877
return target.get(Number(prop));

0 commit comments

Comments
 (0)