Skip to content

Commit

Permalink
Removed comments preventing a panic
Browse files Browse the repository at this point in the history
  • Loading branch information
condekind committed Aug 19, 2024
1 parent e032ba9 commit cba8d80
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
)
)

#df = pl.DataFrame(
# {
# "a": [None, None, 3, None, None, 9, 11, None],
# }
#)
#result = df.with_columns(interpolate=mp.interpolate("a"))
#print(result)
df = pl.DataFrame(
{
"a": [None, None, 3, None, None, 9, 11, None],
}
)
result = df.with_columns(interpolate=mp.interpolate("a"))
print(result)

0 comments on commit cba8d80

Please sign in to comment.