Skip to content

Commit ab285f2

Browse files
committed
Fix ktlint: wrap long function parameters
1 parent 56a779b commit ab285f2

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

domain/src/main/java/dev/trueshot/domain/repository/PhotoRepository.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ interface PhotoRepository {
1313

1414
fun getPhotosByStatus(status: SigningStatus): Flow<List<CapturedPhoto>>
1515

16-
suspend fun savePhoto(photo: CapturedPhoto, sensorSnapshot: SensorSnapshot, exifData: ExifData)
16+
suspend fun savePhoto(
17+
photo: CapturedPhoto,
18+
sensorSnapshot: SensorSnapshot,
19+
exifData: ExifData,
20+
)
1721

1822
suspend fun updateSigningStatus(photoId: String, status: SigningStatus)
1923

0 commit comments

Comments
 (0)