Skip to content

Commit

Permalink
Fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bouzuya committed Dec 10, 2023
1 parent e893a53 commit 608c8e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/date_of_birth.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::{ops::Range, str::FromStr};

use rand::{thread_rng, Rng};
use time::{macros::format_description, Date, Duration, OffsetDateTime};
use rand::Rng;
use time::{macros::format_description, Date, Duration};

#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct DateOfBirth(Date);
Expand Down

0 comments on commit 608c8e1

Please sign in to comment.