Projet

Général

Profil

0015-misc-fix-single-string-used-for-slots-pylint-error-5.patch

Lauréline Guérin, 30 août 2021 17:53

Télécharger (693 octets)

Voir les différences:

Subject: [PATCH 15/31] misc: fix single-string-used-for-slots pylint error
 (#56288)

 combo/utils/cache.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
combo/utils/cache.py
38 38

  
39 39

  
40 40
class _HashedSeq(list):
41
    __slots__ = 'hashvalue'
41
    __slots__ = ('hashvalue',)
42 42

  
43 43
    def __init__(self, tup, hash=hash):
44 44
        self[:] = tup
45
-