Skip to content

Commit 735afb0

Browse files
committed
Fix style of imports in type_conversion example
1 parent 0188b56 commit 735afb0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

examples/type_conversion.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#[cfg(feature = "approx")]
2-
use {approx::assert_abs_diff_eq, ndarray::prelude::*, std::convert::TryFrom};
2+
use std::convert::TryFrom;
3+
4+
#[cfg(feature = "approx")]
5+
use approx::assert_abs_diff_eq;
6+
#[cfg(feature = "approx")]
7+
use ndarray::prelude::*;
38

49
#[cfg(feature = "approx")]
510
fn main() {

0 commit comments

Comments
 (0)