chore(swabble): apply swiftformat

This commit is contained in:
Peter Steinberger
2025-12-09 15:36:41 +01:00
parent 336c9d6caa
commit 318457cb2c
13 changed files with 74 additions and 75 deletions

View File

@@ -28,11 +28,11 @@ private enum LaunchdHelper {
"KeepAlive": true,
]
let data = try PropertyListSerialization.data(fromPropertyList: plist, format: .xml, options: 0)
try data.write(to: self.plistURL)
try data.write(to: plistURL)
}
static func removePlist() throws {
try? FileManager.default.removeItem(at: self.plistURL)
try? FileManager.default.removeItem(at: plistURL)
}
}