Projet

Général

Profil

0001-misc-fix-pylint-errors-with-2.10.2-version-56489.patch

Lauréline Guérin, 30 août 2021 16:39

Télécharger (1,35 ko)

Voir les différences:

Subject: [PATCH] misc: fix pylint errors with 2.10.2 version (#56489)

 pylint.rc     | 4 ++++
 tox.ini       | 2 +-
 wcs/compat.py | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
pylint.rc
53 53
    unused-argument
54 54

  
55 55

  
56
[TESTOPTIONS]
57
ignored-parents=wcs.qommon.TenantAwareThread
58

  
59

  
56 60
[REPORTS]
57 61
output-format=parseable
58 62
include-ids=yes
tox.ini
40 40
    django-ratelimit<3
41 41
    pyproj
42 42
    astroid!=2.5.7
43
    pylint<2.10
43
    pylint
44 44
    Quixote>=3.0,<3.2
45 45
    pre-commit
46 46
    pyzbar
wcs/compat.py
205 205
            output = self.try_publish(request)
206 206
        except PublishError as exc:
207 207
            output = self.finish_interrupted_request(exc)
208
        except Exception as exc:
208
        except Exception:
209 209
            output = self.finish_failed_request()
210 210
        response = request.response
211 211

  
212
-