Skip to content

Commit 3017aed

Browse files
committed
pylint skip too-many-instances
1 parent 7127c95 commit 3017aed

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

GPUmodules/GPUmodule.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ class ObjDict(dict):
6666
Allow access of dictionary keys by key name.
6767
"""
6868
# pylint: disable=attribute-defined-outside-init
69+
# pylint: disable=too-many-instance-attributes
6970
def __getattr__(self, name):
7071
if name in self:
7172
return self[name]
@@ -86,6 +87,7 @@ class GpuItem:
8687
"""An object to store GPU details.
8788
"""
8889
# pylint: disable=attribute-defined-outside-init
90+
# pylint: disable=too-many-instance-attributes
8991
_finalized = False
9092
_button_labels = {'loading': 'Load%',
9193
'power': 'Power',

0 commit comments

Comments
 (0)