mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-12 07:35:07 +00:00
Use Rust 1.75 toolchain (#9437)
This commit is contained in:
parent
ba71772d93
commit
94968fedd5
17 changed files with 63 additions and 30 deletions
|
@ -1476,7 +1476,7 @@ impl Radix {
|
|||
Radix::Binary => matches!(c, '0'..='1'),
|
||||
Radix::Octal => matches!(c, '0'..='7'),
|
||||
Radix::Decimal => c.is_ascii_digit(),
|
||||
Radix::Hex => matches!(c, '0'..='9' | 'a'..='f' | 'A'..='F'),
|
||||
Radix::Hex => c.is_ascii_hexdigit(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue