Skip to content

Commit c174ce9

Browse files
committed
switched to simple clippy --fix for linting
1 parent 51ea001 commit c174ce9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: lint
20-
run: cargo clippy --all-targets --all-features -- -D warnings
20+
run: cargo clippy --fix
2121
- name: format
2222
run: cargo fmt --all -- --check
2323
- name: Build

core/src/filter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//! measurements in the local level frame (i.e. a GPS fix).
1717
use crate::linalg::matrix_square_root;
1818
use crate::{IMUData, StrapdownState};
19-
use nalgebra::{vector, DMatrix, DVector, SVector, Vector3};
19+
use nalgebra::{DMatrix, DVector, SVector, Vector3};
2020
use rand;
2121
use rand_distr::{Distribution, Normal};
2222
use std::fmt::Debug;

0 commit comments

Comments
 (0)