Skip to content

Commit

Permalink
feature: add code style
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandocast authored and abealcantara committed Sep 26, 2023
1 parent 082808d commit 2c815a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/polars-lazy/src/physical_plan/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::borrow::Cow;
use std::sync::atomic::{AtomicU8, Ordering};
use std::sync::{Mutex, RwLock};

use bitflags::{bitflags, Flags};
use bitflags::bitflags;
use once_cell::sync::OnceCell;
use polars_core::config::verbose;
use polars_core::frame::group_by::GroupsProxy;
Expand Down
4 changes: 2 additions & 2 deletions py-polars/src/lazyframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ use polars::lazy::frame::LazyCsvReader;
use polars::lazy::frame::LazyJsonLineReader;
use polars::lazy::frame::{AllowedOptimizations, LazyFrame};
use polars::lazy::prelude::col;
#[cfg(feature = "csv")]
use polars::prelude::{cloud, ClosedWindow, CsvEncoding, Field, JoinType, Schema};
#[cfg(feature = "json")]
use polars::prelude::JsonFormat;
#[cfg(feature = "csv")]
use polars::prelude::{ClosedWindow, CsvEncoding, Field, JoinType, Schema};
use polars::time::*;
use polars_core::frame::explode::MeltArgs;
use polars_core::frame::UniqueKeepStrategy;
Expand Down

0 comments on commit 2c815a8

Please sign in to comment.