Skip to content

Commit 2c8588d

Browse files
committed
Group imports together and cargo fmt
1 parent 188f82c commit 2c8588d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

stdlib/src/fcntl.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ pub(crate) use fcntl::make_module;
22

33
#[pymodule]
44
mod fcntl {
5-
use std::mem;
6-
75
use crate::vm::{
86
builtins::PyIntRef,
97
function::{ArgMemoryBuffer, ArgStrOrBytesLike, Either, OptionalArg},
108
stdlib::{io, os},
119
PyResult, VirtualMachine,
1210
};
11+
use std::mem;
1312

1413
// TODO: supply these from <asm-generic/fnctl.h> (please file an issue/PR upstream):
1514
// LOCK_MAND, LOCK_READ, LOCK_WRITE, LOCK_RW, F_GETSIG, F_SETSIG, F_GETLK64, F_SETLK64,

0 commit comments

Comments
 (0)