Skip to content

Commit

Permalink
Make imports similar to main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pitdicker committed Jul 17, 2023
1 parent 90511c8 commit 3993c02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/datetime/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ use crate::offset::{FixedOffset, Offset, TimeZone, Utc};
use crate::oldtime::Duration as OldDuration;
#[allow(deprecated)]
use crate::Date;
use crate::Months;
use crate::{Datelike, Timelike, Weekday};
use crate::{Datelike, Months, Timelike, Weekday};

#[cfg(feature = "rkyv")]
use rkyv::{Archive, Deserialize, Serialize};
Expand Down
4 changes: 1 addition & 3 deletions src/format/parsed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ use super::{ParseResult, IMPOSSIBLE, NOT_ENOUGH, OUT_OF_RANGE};
use crate::naive::{NaiveDate, NaiveDateTime, NaiveTime};
use crate::offset::{FixedOffset, LocalResult, Offset, TimeZone};
use crate::oldtime::Duration as OldDuration;
use crate::DateTime;
use crate::Weekday;
use crate::{Datelike, Timelike};
use crate::{DateTime, Datelike, Timelike, Weekday};

/// Parsed parts of date and time. There are two classes of methods:
///
Expand Down

0 comments on commit 3993c02

Please sign in to comment.