Projet

Général

Profil

0027-misc-pylint-fix-useless-else-on-loop-52222.patch

Lauréline Guérin, 22 mars 2021 16:57

Télécharger (754 octets)

Voir les différences:

Subject: [PATCH 27/33] misc: pylint fix useless-else-on-loop (#52222)

 wcs/workflows.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
wcs/workflows.py
1490 1490
                    o.id = '1'
1491 1491
                self.items.append(o)
1492 1492
                return o
1493
        else:
1494
            raise KeyError()
1493
        raise KeyError()
1495 1494

  
1496 1495
    def append_trigger(self, type):
1497 1496
        trigger_types = {
1498
-