Projet

Général

Profil

0008-trivial-fix-not-a-mapping-pylint-warning-52732.patch

Frédéric Péters, 04 avril 2021 17:20

Télécharger (1,05 ko)

Voir les différences:

Subject: [PATCH 08/15] trivial: fix not-a-mapping pylint warning (#52732)

 pylint.rc      | 1 -
 wcs/wscalls.py | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)
pylint.rc
32 32
    no-member,
33 33
    no-self-use,
34 34
    non-parent-init-called,
35
    not-a-mapping,
36 35
    not-callable,
37 36
    possibly-unused-variable,
38 37
    protected-access,
wcs/wscalls.py
266 266
            cache=True,
267 267
            notify_on_errors=self.notify_on_errors,
268 268
            record_on_errors=self.record_on_errors,
269
            **self.request,
269
            **(self.request or {}),
270 270
        )[2]
271 271
        return json_loads(data)
272 272

  
273
-