Skip to content

Commit 1bd0061

Browse files
Update app/services/profile/scorer.py
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent ab84ac7 commit 1bd0061

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

app/services/profile/scorer.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,14 @@ def _year_to_era(year: int) -> str:
136136
if year < 1970:
137137
return "pre-1970s"
138138
elif year < 1980:
139-
return "1980s"
139+
return "1970s"
140140
elif year < 1990:
141-
return "1990s"
141+
return "1980s"
142142
elif year < 2000:
143-
return "2000s"
143+
return "1990s"
144144
elif year < 2010:
145-
return "2010s"
145+
return "2000s"
146146
elif year < 2020:
147-
return "2020s"
147+
return "2010s"
148148
else:
149149
return "2020s"

0 commit comments

Comments
 (0)