Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
F1248 committed Aug 18, 2024
1 parent 6398915 commit 8caebaf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion OpenMacHelper/Types/SystemInformation/Hardware.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ extension SystemInformation {
)
return (components?[0], components?[1], components?[2])
}
if Model.intelBased { return (SystemProfiler.hardware?["number_processors"] as? Int, nil, nil) }
if Model.intelBased {
return (SystemProfiler.hardware?["number_processors"] as? Int, nil, nil)
}
return nil
}()
static let total: Int? = cores?.0
Expand Down

0 comments on commit 8caebaf

Please sign in to comment.