Skip to content

Commit

Permalink
Merge pull request #1 from xyb/patch-1
Browse files Browse the repository at this point in the history
fix setup.py
  • Loading branch information
digithree authored Aug 15, 2024
2 parents 7a53c74 + 307a832 commit 72d98d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def configAgent():
if row.get("agent_attitude") == None:
user_input = inputForAccepted(
"Agent attitude:",
lambda: input(f"E.g. \"researches new topics and discusses existing research.\"\n> {row["agent_name"]}... "),
lambda: input(f"E.g. \"researches new topics and discusses existing research.\"\n> {row['agent_name']}... "),
lambda _: print("Accept?")
).strip()
row["agent_attitude"] = user_input
Expand Down Expand Up @@ -157,4 +157,4 @@ def inputAccepted():
return re.search("y", accept, re.IGNORECASE) != None

if __name__ == "__main__":
start()
start()

0 comments on commit 72d98d1

Please sign in to comment.