Projet

Général

Profil

0057-misc-fix-not-callable-pylint-error-62099.patch

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

Télécharger (744 octets)

Voir les différences:

Subject: [PATCH 57/65] misc: fix not-callable pylint error (#62099)

 passerelle/utils/wcs.py | 1 +
 1 file changed, 1 insertion(+)
passerelle/utils/wcs.py
516 516

  
517 517
    def __iter__(self):
518 518
        for d in self.wcs_api.get_json(self.url)['data']:
519
            # pylint: disable=not-callable
519 520
            yield self.object_class(wcs_api=self.wcs_api, **d)
520 521

  
521 522
    def __len__(self):
522
-