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 has been archived by the owner on Feb 22, 2022. It is now read-only.
The get_current_files function build a list of all files already present in the repo, in order to delete them if needed.
This list could potentially grow quite big - Using a generator would be a neat and easy way to reduce memory usage, as we only want to iterate over them once.
The text was updated successfully, but these errors were encountered:
The
get_current_files
function build a list of all files already present in the repo, in order to delete them if needed.This list could potentially grow quite big - Using a generator would be a neat and easy way to reduce memory usage, as we only want to iterate over them once.
The text was updated successfully, but these errors were encountered: