Skip to content

Commit 16828c1

Browse files
committed
PR feedback
1 parent 3ad18d4 commit 16828c1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/input/datetime.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate::errors::{ErrorType, ValError, ValResult};
21
use pyo3::intern;
32
use pyo3::prelude::*;
43
use pyo3::types::{PyDate, PyDateTime, PyDelta, PyDeltaAccess, PyDict, PyTime, PyTzInfo};
@@ -8,6 +7,7 @@ use std::borrow::Cow;
87
use strum::EnumMessage;
98

109
use super::Input;
10+
use crate::errors::{ErrorType, ValError, ValResult};
1111

1212
#[cfg_attr(debug_assertions, derive(Debug))]
1313
pub enum EitherDate<'a> {
@@ -54,7 +54,6 @@ impl<'a> EitherDate<'a> {
5454
}
5555

5656
#[cfg_attr(debug_assertions, derive(Debug))]
57-
#[derive(Clone)]
5857
pub enum EitherTime<'a> {
5958
Raw(Time),
6059
Py(&'a PyTime),

0 commit comments

Comments
 (0)