Skip to content

Commit dfb7ba0

Browse files
committed
Fix missing re-export of BorrowError.
1 parent 6b75cf9 commit dfb7ba0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ pub use crate::borrow::{
6060
};
6161
pub use crate::convert::{IntoPyArray, NpyIndex, ToNpyDims, ToPyArray};
6262
pub use crate::dtype::{dtype, Complex32, Complex64, Element, PyArrayDescr};
63-
pub use crate::error::{DimensionalityError, FromVecError, NotContiguousError, TypeError};
63+
pub use crate::error::{
64+
BorrowError, DimensionalityError, FromVecError, NotContiguousError, TypeError,
65+
};
6466
pub use crate::npyffi::{PY_ARRAY_API, PY_UFUNC_API};
6567
#[allow(deprecated)]
6668
pub use crate::npyiter::{

0 commit comments

Comments
 (0)