Skip to content

Commit f2f8468

Browse files
committed
clippy fix
1 parent 8c14902 commit f2f8468

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

intel-mkl-src/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
// SOFTWARE.
2222

23-
use anyhow::{bail, Result};
23+
use anyhow::Result;
2424
use intel_mkl_tool::*;
2525
use std::str::FromStr;
2626

intel-mkl-tool/examples/seek.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ fn main() -> ExitCode {
1414
num_not_found += 1;
1515
}
1616
}
17-
return ExitCode::from(num_not_found);
17+
ExitCode::from(num_not_found)
1818
}

0 commit comments

Comments
 (0)