Skip to content

Commit 49d76a1

Browse files
committed
removes unnecssary lint exclusion
1 parent 72361e3 commit 49d76a1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Sources/ParseSwift/Types/ACL.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,7 @@ extension ACL {
115115
}.flatMap { pair -> [(String, Access, Bool)] in
116116
let (scope, accessValues) = pair
117117
return try accessValues.allKeys.flatMap { (access) -> (String, Access, Bool)? in
118-
// swiftlint:disable line_length
119118
guard let value = try accessValues.decodeIfPresent(Bool.self, forKey: access) else {
120-
// swiftlint:enable line_length
121119
return nil
122120
}
123121
return (scope, access, value)

0 commit comments

Comments
 (0)