Remove leading 'or' from fixable match

This commit is contained in:
Charlie Marsh
2022-10-16 21:38:22 -04:00
parent 6ee3075867
commit 08b14ed77e

View File

@@ -1202,7 +1202,8 @@ impl CheckKind {
pub fn fixable(&self) -> bool {
matches!(
self,
|CheckKind::BlankLineAfterLastSection(_)| CheckKind::BlankLineAfterSection(_)
CheckKind::BlankLineAfterLastSection(_)
| CheckKind::BlankLineAfterSection(_)
| CheckKind::DeprecatedUnittestAlias(_, _)
| CheckKind::DoNotAssertFalse
| CheckKind::DuplicateHandlerException(_)