Skip to content

Commit d788408

Browse files
committed
pylint max-attributes appears to be ratcheted down recently
1 parent 6a309ed commit d788408

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/aws_encryption_sdk/caches/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ class CryptoMaterialsCacheEntryHints(object):
143143

144144
@attr.s(hash=False)
145145
class CryptoMaterialsCacheEntry(object):
146+
# pylint: disable=too-many-instance-attributes
146147
"""Value and metadata store for cryptographic materials cache entries.
147148
148149
:param bytes cache_key: Identifier for entries in cache

src/aws_encryption_sdk/structures.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
@attr.s(hash=True)
2222
class MessageHeader(object):
23+
# pylint: disable=too-many-instance-attributes
2324
"""Deserialized message header object.
2425
2526
:param version: Message format version, per spec

0 commit comments

Comments
 (0)