Skip to content

Commit

Permalink
Fix clippy::unreadable_literal (pedantic)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersk authored and charliermarsh committed Nov 22, 2022
1 parent 9a66cf2 commit a46160f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/directives.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ use crate::{Settings, SourceCodeLocator};

bitflags! {
pub struct Flags: u32 {
const NOQA = 0b00000001;
const ISORT = 0b00000010;
const NOQA = 0b0000_0001;
const ISORT = 0b0000_0010;
}
}

Expand Down

0 comments on commit a46160f

Please sign in to comment.