You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
In the check_file function of Build/check_indents.py, it is performing a redundant list call, on f.readlines() which itself returns a list, in line 28:
In the
check_filefunction ofBuild/check_indents.py, it is performing a redundantlistcall, onf.readlines()which itself returns alist, in line 28:This can have impact on performance, if the file is really large. This does not have any benefit over the plain
f.readlines()either.I propose the following change: