Skip to content

Commit

Permalink
feat: improve panic message (pola-rs#13836)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 authored and r-brink committed Jan 24, 2024
1 parent d459f5e commit e1081f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-core/src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ macro_rules! with_match_physical_numeric_polars_type {(
UInt64 => __with_ty__! { UInt64Type },
Float32 => __with_ty__! { Float32Type },
Float64 => __with_ty__! { Float64Type },
_ => unimplemented!()
dt => panic!("not implemented for dtype: {}", dt)
}
})}

Expand Down

0 comments on commit e1081f6

Please sign in to comment.