Run swift-format

This commit is contained in:
stephencelis
2021-09-17 16:10:52 +00:00
committed by GitHub Actions
parent 64997d85f3
commit c5f2089100

View File

@@ -53,15 +53,14 @@ extension Store {
.removeDuplicates(by: { ($0 != nil) == ($1 != nil) })
.sink { state in
if var state = state {
unwrap(self.scope {
state = $0 ?? state
return state
})
unwrap(
self.scope {
state = $0 ?? state
return state
})
} else {
`else`()
}
}
}
}