Skip to content

Commit 79183e0

Browse files
d-dategithub-actions[bot]
authored andcommitted
[ci skip] Run swift-format
1 parent 85a3415 commit 79183e0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

MyLibrary/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ let package = Package(
5353
.target(
5454
name: "DependencyExtra",
5555
dependencies: [
56-
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
56+
.product(name: "ComposableArchitecture", package: "swift-composable-architecture")
5757
]
5858
),
5959
.target(
@@ -96,7 +96,7 @@ let package = Package(
9696
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
9797
],
9898
plugins: [
99-
.plugin(name: "LicensesPlugin", package: "LicensesPlugin"),
99+
.plugin(name: "LicensesPlugin", package: "LicensesPlugin")
100100
]
101101
),
102102
.testTarget(

MyLibrary/Sources/DataClient/Client.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import Dependencies
22
import DependenciesMacros
33
import Foundation
4-
import os.log
54
import SharedModels
5+
import os.log
66

77
@DependencyClient
88
public struct DataClient {
@@ -53,7 +53,7 @@ extension DataClient: DependencyKey {
5353
)
5454

5555
static func loadDataFromBundle(fileName: String) -> Data {
56-
56+
5757
let filePath = Bundle.module.path(forResource: fileName, ofType: "json")!
5858
let fileURL = URL(fileURLWithPath: filePath)
5959
let data = try! Data(contentsOf: fileURL)

0 commit comments

Comments
 (0)