Skip to content

Commit

Permalink
fix python
Browse files Browse the repository at this point in the history
  • Loading branch information
cloud-fan committed Aug 1, 2015
1 parent e8f6682 commit 77d482f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ object EvaluatePython {
case (a: ArrayData, array: ArrayType) =>
val values = new java.util.ArrayList[Any](a.numElements())
a.foreach(array.elementType, (_, e) => {
values.add(e)
values.add(toJava(e, array.elementType))
})
values

Expand Down

0 comments on commit 77d482f

Please sign in to comment.