Remove unneeded else from for/else loop. It confuses pylint

(cherry picked from commit 2950f2641b)

Related: rhbz#1664485
This commit is contained in:
Brian C. Lane 2019-01-08 11:38:26 -08:00
parent 59e2da0a96
commit 7dad328424

View File

@ -375,24 +375,21 @@ class CustomizationsTests(unittest.TestCase):
for user in ks.handler.user.userList: for user in ks.handler.user.userList:
if user.name == username: if user.name == username:
return user return user
else: return None
return None
@staticmethod @staticmethod
def _find_sshkey(ks, username): def _find_sshkey(ks, username):
for key in ks.handler.sshkey.sshUserList: for key in ks.handler.sshkey.sshUserList:
if key.username == username: if key.username == username:
return key return key
else: return None
return None
@staticmethod @staticmethod
def _find_group(ks, groupname): def _find_group(ks, groupname):
for group in ks.handler.group.groupList: for group in ks.handler.group.groupList:
if group.name == groupname: if group.name == groupname:
return group return group
else: return None
return None
def test_hostname(self): def test_hostname(self):
blueprint_data = """name = "test-hostname" blueprint_data = """name = "test-hostname"