Skip to content

Commit a5b0809

Browse files
authored
fix clippy warnings (#123)
* fix clippy warnings * update CI ruff command
1 parent 8dd2aea commit a5b0809

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- name: install ruff
6464
run: python -m pip install ruff
6565
- name: run python lint
66-
run: ruff --ignore=E501 ast --show-source
66+
run: ruff check ast
6767

6868
- name: spell checker
6969
uses: streetsidesoftware/cspell-action@v2

vendored/src/text_size/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ mod range;
2323
mod size;
2424
mod traits;
2525

26-
#[cfg(feature = "schemars")]
27-
mod schemars_impls;
2826
#[cfg(feature = "serde")]
2927
mod serde_impls;
3028

vendored/src/text_size/size.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ use {
55
fmt, iter,
66
num::TryFromIntError,
77
ops::{Add, AddAssign, Sub, SubAssign},
8-
u32,
98
},
109
};
1110

0 commit comments

Comments
 (0)