glutanimate / review-heatmap

Anki add-on to help you keep track of your review activity
https://ankiweb.net/shared/info/1771074083
Other
1.2k stars 90 forks source link

minor performance improvement when determining max streak size #130

Closed shoaib281 closed 3 years ago

shoaib281 commented 3 years ago

Description

Changed

if current >  streak_max:
   streak_max = current

to

streak_max = max(streak_max, current)

improving performance.

Checklist:

Please replace the space inside the brackets with an x and fill out the ellipses if the following items apply: