Skip to content

Commit

Permalink
Fix property name.
Browse files Browse the repository at this point in the history
  • Loading branch information
kenwenzel committed Jul 22, 2024
1 parent e5d75f6 commit 405d9aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class KvinService(path: List[String], store: Kvin) extends RestHelper with Logga
}).flatten.toList

// print header row
csvPrinter.printRecord(("time" :: itemProperties.map(p => s"<${p._1}>@<${p._2}")).asJava)
csvPrinter.printRecord(("time" :: itemProperties.map(p => s"<${p._1}>@<${p._2}>")).asJava)

var itemData = values.map(v => {
val ps = propertiesParam openOr v._2.map(_._1).toSet.toList.sorted
Expand Down

0 comments on commit 405d9aa

Please sign in to comment.