Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(python): Allow fill_null to be used with torch tensors #19120

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions py-polars/polars/functions/lit.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def lit(
if dtype:
return wrap_expr(plr.lit(value, allow_object, is_scalar=True)).cast(dtype)

try:
if isinstance(value, np.generic):
# numpy literals like np.float32(0) have item/dtype
item = value.item()

Expand All @@ -176,7 +176,7 @@ def lit(
time_unit = dtype_name[len("timedelta64[") : -1]
return lit(item).cast(Duration(time_unit))

except AttributeError:
else:
item = value

return wrap_expr(plr.lit(item, allow_object, is_scalar=True))
Loading