Skip to content

Commit

Permalink
Align parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Schrenk committed Dec 2, 2023
1 parent f2109ca commit 4e9e274
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Sources/Swift/LocalTime.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ struct LocalTime: ExpressibleByArgument, CustomStringConvertible {

/// For ArgumentParser
init?(argument: String) {
let timeSplits =
argument.trim().split(separator: ":").compactMap{ Int($0) }
let timeSplits = argument.trim().split(separator: ":").compactMap {Int($0) }
if timeSplits.count != 2 {
return nil
}
Expand Down

0 comments on commit 4e9e274

Please sign in to comment.