pmb.parse.arch.alpine_native: remove unused ret (MR 2130)

This commit is contained in:
Oliver Smith 2021-10-24 14:28:24 +02:00
parent a8d425554c
commit f2966e62ae
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 0 additions and 2 deletions

View File

@ -6,7 +6,6 @@ import fnmatch
def alpine_native():
machine = platform.machine()
ret = ""
mapping = {
"i686": "x86",
@ -19,7 +18,6 @@ def alpine_native():
return mapping[machine]
raise ValueError("Can not map platform.machine '" + machine + "'"
" to the right Alpine Linux architecture")
return ret
def from_chroot_suffix(args, suffix):