persepolisdm / persepolis

Persepolis Download Manager is a GUI for aria2.
https://persepolisdm.github.io
GNU General Public License v3.0
6.13k stars 647 forks source link

delete unnecessary calculations for get the last index of lists #920

Closed IamRezaMousavi closed 4 months ago

IamRezaMousavi commented 1 year ago

For get the last index of a list (or tuple) don't need to calculate length of the list Just use -1 instead of list index

(m[len(m) - 1] == m[-1] --> True)