Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Fix line length for codacy
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonm23 committed Sep 6, 2023
1 parent af1e6a9 commit 529a9a4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ public func loadPlist(path: String) -> [String: Any] {
return plist
}

public func savePlist(path: String, plist: [String: Any], format: PropertyListSerialization.PropertyListFormat = .binary) {
public func savePlist(path: String,
plist: [String: Any],
format: PropertyListSerialization.PropertyListFormat = .binary) {
guard let data = try? PropertyListSerialization.data(
fromPropertyList: plist,
format: format,
Expand Down

0 comments on commit 529a9a4

Please sign in to comment.