Desuuuu / klipper

Klipper is a 3d-printer firmware. Modified to work with DWIN T5UID1 touchscreens.
GNU General Public License v3.0
123 stars 51 forks source link

Typos in t5uid1.get_duration #138

Closed Thinkersbluff closed 1 year ago

Thinkersbluff commented 1 year ago

minutes = seconds / 60 hours = minutes / 60 days = hours / 24

Should read:

minutes = seconds // 60
hours = minutes // 60
days = hours // 24