diff options
author | Devaev Maxim <[email protected]> | 2020-09-30 07:25:52 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-09-30 07:25:52 +0300 |
commit | 630593492abe6f7d6edf15ee05e62e7d0489e36d (patch) | |
tree | 2985bad3f9b083200ae6535f4fd42ef1872bc8d5 /kvmd/yamlconf | |
parent | 3f9c32e9fc518bf7e94a2507bd2e388de3f6f749 (diff) |
ignored protected-access for _unpack()
Diffstat (limited to 'kvmd/yamlconf')
-rw-r--r-- | kvmd/yamlconf/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/yamlconf/__init__.py b/kvmd/yamlconf/__init__.py index 9de5bee3..eea9e231 100644 --- a/kvmd/yamlconf/__init__.py +++ b/kvmd/yamlconf/__init__.py @@ -80,7 +80,7 @@ class Section(dict): for (key, value) in self.items(): if key not in ignore: if isinstance(value, Section): - unpacked[key] = value._unpack() # pylint: disable=protected-access + unpacked[key] = value._unpack() else: # Option unpacked[self._get_unpack_as(key)] = value # pylint: disable=protected-access return unpacked |