flake8: apply E71x rule
This commit is contained in:
parent
fa69c4904e
commit
6ed30954b2
13 changed files with 114 additions and 114 deletions
|
|
@ -185,7 +185,7 @@ def getBestArchFromList(archlist, myarch=None):
|
|||
bestarch = getBestArch(myarch)
|
||||
if bestarch != myarch:
|
||||
bestarchchoice = getBestArchFromList(archlist, bestarch)
|
||||
if bestarchchoice != None and bestarchchoice != "noarch":
|
||||
if bestarchchoice is not None and bestarchchoice != "noarch":
|
||||
return bestarchchoice
|
||||
|
||||
thisarch = archlist[0]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue