Skip to content

Commit 3e3c69b

Browse files
committed
Fix non-msvc build
1 parent 3b08025 commit 3e3c69b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

vm/src/stdlib/nt.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@ pub(crate) fn make_module(vm: &VirtualMachine) -> PyRef<PyModule> {
1010

1111
#[pymodule(name = "nt", with(super::os::_os))]
1212
pub(crate) mod module {
13-
#[cfg(target_env = "msvc")]
14-
use crate::builtins::PyListRef;
1513
use crate::{
16-
builtins::{PyDictRef, PyStrRef, PyTupleRef},
14+
builtins::{PyDictRef, PyListRef, PyStrRef, PyTupleRef},
1715
common::{crt_fd::Fd, os::last_os_error, suppress_iph},
1816
convert::ToPyException,
1917
function::{Either, OptionalArg},

0 commit comments

Comments
 (0)