Skip to content

Commit db82b29

Browse files
committed
Disable pylint errors in config.py
Disable invalid-name error since capital letters in class attributes names seem to be disallowed. Disable too-many-instance-attributes for UpdaterConfig. Signed-off-by: Teodora Sechkova <[email protected]>
1 parent df5f49f commit db82b29

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tuf/ngclient/config.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
from typing import Optional
99

1010

11+
# pylint: disable=too-many-instance-attributes
12+
# pylint: disable=invalid-name
1113
@dataclass
1214
class UpdaterConfig:
1315
"""Client workflow configuration"""

0 commit comments

Comments
 (0)