Skip to content

Commit

Permalink
fix: 번호 출력 결과가 한 칸씩 밀림현상 (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
roeniss authored Jul 25, 2024
2 parents 852f4b2 + 6c715f0 commit d9d5849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dhapi/port/lottery_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def _format_lotto_numbers(self, lines: list) -> List[Dict]:
slot = {
"mode": mode_dict[line[-1]],
"slot": line[0],
"numbers": line[1:-1].split("|"),
"numbers": line[2:-1].split("|"),
}
slots.append(slot)
return slots
Expand Down

0 comments on commit d9d5849

Please sign in to comment.