8000 remove unused imports · RustPython/RustPython@60163b2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 60163b2

Browse files
committed
remove unused imports
1 parent 72d612c commit 60163b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vm/src/stdlib/time.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ unsafe extern "C" {
3434
#[pymodule(name = "time", with(platform))]
3535
mod decl {
3636
use crate::{
37-
PyObjectRef, PyResult, TryFromObject, VirtualMachine, AsObject,
37+
AsObject, PyObjectRef, PyResult, TryFromObject, VirtualMachine,
3838
builtins::{PyStrRef, PyTypeRef},
3939
function::{Either, FuncArgs, OptionalArg},
4040
types::PyStructSequence,
@@ -552,7 +552,7 @@ mod platform {
552552
use super::decl::{SEC_TO_NS, US_TO_NS};
553553
#[cfg_attr(target_os = "macos", allow(unused_imports))]
554554
use crate::{
555-
AsObject, PyObject, PyObjectRef, PyRef, PyResult, TryFromBorrowedObject, VirtualMachine,
555+
PyObject, PyRef, PyResult, TryFromBorrowedObject, VirtualMachine,
556556
builtins::{PyNamespace, PyStrRef},
557557
convert::IntoPyException,
558558
};

0 commit comments

Comments
 (0)
0