Skip to content

Commit

Permalink
style: fix fit
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Oct 10, 2023
1 parent f8aa992 commit 4aced97
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/ruff_linter/src/line_width.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ use ruff_text_size::TextSize;
#[derive(Clone, Copy, Debug, Eq, PartialEq, serde::Serialize, serde::Deserialize)]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
pub struct LineLength(
#[cfg_attr(feature = "schemars", schemars(range(min = 1, max = 320)))]
NonZeroU16
#[cfg_attr(feature = "schemars", schemars(range(min = 1, max = 320)))] NonZeroU16
);

impl LineLength {
Expand Down

0 comments on commit 4aced97

Please sign in to comment.