Skip to content

Commit

Permalink
fix serde
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Dec 20, 2024
1 parent f811924 commit bafceb3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/polars-core/src/chunked_array/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ pub struct StatisticsFlagsIM {
}

bitflags::bitflags! {
#[derive(Clone, Copy, Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct StatisticsFlags: u32 {
const IS_SORTED_ANY = 0x03;

Expand Down

0 comments on commit bafceb3

Please sign in to comment.