Skip to content

Commit 4278f6b

Browse files
committed
fix wrong previous entry property for ...
... fully vaccinated if R == 6
1 parent 0de6c67 commit 4278f6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cepimose/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def _parse_vaccinations_by_day(data) -> "list[VaccinationByDayRow]":
6767

6868
if R == 6:
6969
people_vaccinated = parsed_data[-1].first_dose
70-
people_fully_vaccinated = parsed_data[-1].first_dose
70+
people_fully_vaccinated = parsed_data[-1].second_dose
7171
people_third_dose = C[1]
7272

7373
if R == 8:

0 commit comments

Comments
 (0)