Projet

Général

Profil

0053-misc-fix-invalid-sequence-index-pylint-error-62099.patch

Lauréline Guérin, 22 mars 2022 10:31

Télécharger (924 octets)

Voir les différences:

Subject: [PATCH 53/65] misc: fix invalid-sequence-index pylint error (#62099)

 passerelle/apps/ovh/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
passerelle/apps/ovh/models.py
177 177
            'sender': sender,
178 178
            'receivers': destinations,
179 179
            'message': text,
180
            'class': self.NEW_MESSAGES_CLASSES[self.msg_class],
180
            'class': self.NEW_MESSAGES_CLASSES[int(self.msg_class)],
181 181
        }
182 182
        if not kwargs['stop']:
183 183
            body.update({'noStopClause': True})
184
-