Skip to content

Commit 2ff5885

Browse files
committed
Allow unused imports for pwd if on android
1 parent 989c2b7 commit 2ff5885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/stdlib/pwd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pub(crate) use pwd::make_module;
44

5-
#[allow(unused)]
5+
#[cfg_attr(target_os = "android", allow(unused_imports))]
66
#[pymodule]
77
mod pwd {
88
use crate::{

0 commit comments

Comments
 (0)