Skip to content

Commit

Permalink
Fix bug with the note
Browse files Browse the repository at this point in the history
  • Loading branch information
TLNBS2405 committed Jan 7, 2024
1 parent d0b39b9 commit aade52e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wavu/wavu_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _convert_json_movelist(move_list_json: list) -> List[Move]:

notes = html.unescape(move["title"]["notes"])
notes = BeautifulSoup(notes, features="lxml").get_text()
notes = notes.replace("* \n", "*")
notes = notes.replace("* \n", "* ")

move = Move(id, name, input, target, damage, on_block, on_hit, on_ch, startup, recovery, notes, "", alias)
move_list.append(move)
Expand Down

0 comments on commit aade52e

Please sign in to comment.