Skip to content

Commit

Permalink
fix: interact
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulLerner committed Dec 16, 2024
1 parent 8acf6e0 commit 722cade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neott/interact.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def user_loop(required_fields, src: str = "en", def_lang: str = "fr", *args, **k
item = {"id": None, src: {}, def_lang: {}}
item[src]["text"] = src_term
item[def_lang]["def"] = {"text": src_def}
output = prompt(item, *args, **kwargs)[0]
output = prompt(item, *args, **kwargs)
print(f"{output}\n")


Expand Down

0 comments on commit 722cade

Please sign in to comment.