Skip to content

Commit

Permalink
Fix the bugfix (Axual#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenvandisseldorp authored May 28, 2024
1 parent 6235c39 commit adff1e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public Value fromDataObject(DataObject object) {
if (object instanceof DataString val) return Value.asValue(val.value());
if (object instanceof DataList val) return Value.asValue(fromDataList(val));
if (object instanceof DataStruct val) return Value.asValue(fromDataStruct(val));
if (object instanceof DataUnion val) fromDataObject(val.value());
if (object instanceof DataUnion val) return fromDataObject(val.value());
throw new KSMLExecutionException("Can not convert DataObject to Python dataType: " + object.getClass().getSimpleName());
}
}

0 comments on commit adff1e9

Please sign in to comment.