From 625c844779d234b0a523fec1e63092bc9edf5b80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Fri, 3 Jun 2022 21:43:49 +0100 Subject: [PATCH] Fix pylint. --- lib/sysgeneral.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sysgeneral.py b/lib/sysgeneral.py index 467b3e5..6208e2b 100644 --- a/lib/sysgeneral.py +++ b/lib/sysgeneral.py @@ -131,9 +131,9 @@ this script the next time") else: raise TypeError("url must be either a string or a list of strings") # Install base files - for i, _ in enumerate(urls): + for i, uri in enumerate(urls): # Download files into cache directory - self.download_file(urls[i], outputs[i]) + self.download_file(uri, outputs[i]) def make_initramfs(self): """Package binary bootstrap seeds and sources into initramfs."""