summaryrefslogtreecommitdiff
path: root/testenv/linters
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-09-30 07:25:52 +0300
committerDevaev Maxim <[email protected]>2020-09-30 07:25:52 +0300
commit630593492abe6f7d6edf15ee05e62e7d0489e36d (patch)
tree2985bad3f9b083200ae6535f4fd42ef1872bc8d5 /testenv/linters
parent3f9c32e9fc518bf7e94a2507bd2e388de3f6f749 (diff)
ignored protected-access for _unpack()
Diffstat (limited to 'testenv/linters')
-rw-r--r--testenv/linters/pylint.ini5
1 files changed, 4 insertions, 1 deletions
diff --git a/testenv/linters/pylint.ini b/testenv/linters/pylint.ini
index 2d0f3de8..1d273038 100644
--- a/testenv/linters/pylint.ini
+++ b/testenv/linters/pylint.ini
@@ -33,7 +33,10 @@ disable =
no-else-return,
len-as-condition,
raise-missing-from,
- protected-access,
+
+[CLASSES]
+exclude-protected =
+ _unpack,
[REPORTS]
msg-template = {symbol} -- {path}:{line}({obj}): {msg}