Projet

Général

Profil

0063-misc-fix-use-dict-literal-pylint-error-62099.patch

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

Télécharger (781 octets)

Voir les différences:

Subject: [PATCH 63/65] misc: fix use-dict-literal pylint error (#62099)

 tests/test_generic_endpoint.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
tests/test_generic_endpoint.py
632 632

  
633 633
    class TestCache:
634 634
        def __init__(self):
635
            self.d = dict()
635
            self.d = {}
636 636
            self.get_calls = 0
637 637
            self.set_calls = 0
638 638

  
639
-