Skip to content

Commit 0daa4f6

Browse files
committed
Format source code
1 parent 035b392 commit 0daa4f6

File tree

1 file changed

+2
-2
lines changed
  • uhabits-core/src/jvmMain/java/org/isoron/uhabits/core/models

1 file changed

+2
-2
lines changed

uhabits-core/src/jvmMain/java/org/isoron/uhabits/core/models/HabitList.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ abstract class HabitList : Iterable<Habit> {
192192
"Unit",
193193
"Target Type",
194194
"Target Value",
195-
"Archived?",
195+
"Archived?"
196196
)
197197
val csv = CSVWriter(out)
198198
csv.writeNext(header, false)
@@ -210,7 +210,7 @@ abstract class HabitList : Iterable<Habit> {
210210
if (habit.isNumerical) habit.unit else "",
211211
if (habit.isNumerical) habit.targetType.name else "",
212212
if (habit.isNumerical) habit.targetValue.toString() else "",
213-
habit.isArchived.toString(),
213+
habit.isArchived.toString()
214214
)
215215
csv.writeNext(cols, false)
216216
}

0 commit comments

Comments
 (0)