Skip to content

Commit dbcd7dc

Browse files
committed
Fix lint errors
1 parent 6b9dc43 commit dbcd7dc

File tree

1 file changed

+2
-1
lines changed
  • oura-library/src/main/kotlin/org/radarbase/oura/user

1 file changed

+2
-1
lines changed

oura-library/src/main/kotlin/org/radarbase/oura/user/OuraUser.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ data class OuraUser(
2323
override val observationKey: ObservationKey = ObservationKey(projectId, userId, sourceId)
2424
override val versionedId: String = "$id${version?.let { "#$it" } ?: ""}"
2525

26-
fun isComplete() = isAuthorized && (endDate == null || startDate.isBefore(endDate)) && serviceUserId != null
26+
fun isComplete() =
27+
isAuthorized && (endDate == null || startDate.isBefore(endDate)) && serviceUserId != null
2728
}

0 commit comments

Comments
 (0)