Skip to content

Commit

Permalink
removed newline from trigger condition (it is already take care of in…
Browse files Browse the repository at this point in the history
… the recursive part)
  • Loading branch information
fractalego committed May 10, 2024
1 parent 0c4c2d9 commit eefc5cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wafl/answerer/rule_maker.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def create_from_query(self, query):
rules_texts = []
for rule in rules:
rules_text = rule.get_string_using_template(
"- If {effect} go through the following points:\n"
"- If {effect} go through the following points:"
)
rules_texts.append(rules_text)
await self._interface.add_fact(f"The bot remembers the rule:\n{rules_text}")
Expand Down

0 comments on commit eefc5cb

Please sign in to comment.