mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-19 17:53:00 +01:00
Fix pylint.
This commit is contained in:
parent
ae811bde5d
commit
625c844779
1 changed files with 2 additions and 2 deletions
|
|
@ -131,9 +131,9 @@ this script the next time")
|
||||||
else:
|
else:
|
||||||
raise TypeError("url must be either a string or a list of strings")
|
raise TypeError("url must be either a string or a list of strings")
|
||||||
# Install base files
|
# Install base files
|
||||||
for i, _ in enumerate(urls):
|
for i, uri in enumerate(urls):
|
||||||
# Download files into cache directory
|
# Download files into cache directory
|
||||||
self.download_file(urls[i], outputs[i])
|
self.download_file(uri, outputs[i])
|
||||||
|
|
||||||
def make_initramfs(self):
|
def make_initramfs(self):
|
||||||
"""Package binary bootstrap seeds and sources into initramfs."""
|
"""Package binary bootstrap seeds and sources into initramfs."""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue