Skip to content

Commit

Permalink
Update instance.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lzehl committed Mar 28, 2024
1 parent 434a938 commit 6d16962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def _build_plurals(self, term: str) -> str:

def _replace_multi(self, term:str, old:List[str], new:str) -> str:
for letter in old:
term.replace(letter, new)
term = term.replace(letter, new)
return term

def _build_single_instance_link(self, instanceReference:Dict) -> str:
Expand Down

0 comments on commit 6d16962

Please sign in to comment.