We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 035b392 commit 0daa4f6Copy full SHA for 0daa4f6
uhabits-core/src/jvmMain/java/org/isoron/uhabits/core/models/HabitList.kt
@@ -192,7 +192,7 @@ abstract class HabitList : Iterable<Habit> {
192
"Unit",
193
"Target Type",
194
"Target Value",
195
- "Archived?",
+ "Archived?"
196
)
197
val csv = CSVWriter(out)
198
csv.writeNext(header, false)
@@ -210,7 +210,7 @@ abstract class HabitList : Iterable<Habit> {
210
if (habit.isNumerical) habit.unit else "",
211
if (habit.isNumerical) habit.targetType.name else "",
212
if (habit.isNumerical) habit.targetValue.toString() else "",
213
- habit.isArchived.toString(),
+ habit.isArchived.toString()
214
215
csv.writeNext(cols, false)
216
}
0 commit comments