chore(ci): fix swiftformat lint

This commit is contained in:
Peter Steinberger
2025-12-20 19:48:53 +01:00
parent 483c0e4cea
commit 2ca7c2629c
3 changed files with 8 additions and 10 deletions

View File

@@ -8,9 +8,8 @@ enum GatewayAutostartPolicy {
static func shouldEnsureLaunchAgent(
mode: AppState.ConnectionMode,
paused: Bool,
attachExistingOnly: Bool,
) -> Bool
attachExistingOnly: Bool) -> Bool
{
shouldStartGateway(mode: mode, paused: paused) && !attachExistingOnly
self.shouldStartGateway(mode: mode, paused: paused) && !attachExistingOnly
}
}