Skip to content

Commit 916fcf4

Browse files
committed
fix compile error caused by std name in lib root
1 parent 81d7c67 commit 916fcf4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/conversions/num_bigint.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,12 @@
4747
//! assert n + 1 == value
4848
//! ```
4949
50+
use super::std::num::nb_index;
5051
#[cfg(Py_LIMITED_API)]
5152
use crate::types::{bytes::PyBytesMethods, PyBytes};
5253
use crate::{
53-
conversion::IntoPyObject, std::num::nb_index, types::PyInt, Borrowed, Bound, FromPyObject,
54-
PyAny, PyErr, PyResult, Python,
54+
conversion::IntoPyObject, types::PyInt, Borrowed, Bound, FromPyObject, PyAny, PyErr, PyResult,
55+
Python,
5556
};
5657

5758
use num_bigint::{BigInt, BigUint};

0 commit comments

Comments
 (0)