Skip to content

Commit

Permalink
[fix][test] ensure EchoTranslator.processInput does not return null (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
siddvenk authored Jan 16, 2025
1 parent 7315729 commit 904fd26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public Batchifier getBatchifier() {
@Override
public NDList processInput(TranslatorContext ctx, Input input) {
ctx.setAttachment("input", input);
return null;
return new NDList();
}

@Override
Expand Down

0 comments on commit 904fd26

Please sign in to comment.