diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-04-03 13:02:25 +0200 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2026-04-03 13:13:32 +0200 |
| commit | bf126401747d1a7a344fec5a48f2313d3f5eb67a (patch) | |
| tree | 81a79d7dac29261fdd9452d5de350aa64771b3d4 /src | |
| parent | f1a412985288730cc65a250da2bd4f5b87ade43f (diff) | |
| download | vyos-1x-bf126401747d1a7a344fec5a48f2313d3f5eb67a.tar.gz vyos-1x-bf126401747d1a7a344fec5a48f2313d3f5eb67a.zip | |
nat64: T8456: remove no longer needed pylint control statements
Diffstat (limited to 'src')
| -rwxr-xr-x | src/conf_mode/nat64.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/conf_mode/nat64.py b/src/conf_mode/nat64.py index 0ea594e1a..fe44abec4 100755 --- a/src/conf_mode/nat64.py +++ b/src/conf_mode/nat64.py @@ -14,8 +14,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -# pylint: disable=empty-docstring,missing-module-docstring - import csv import os import re @@ -57,8 +55,6 @@ def get_config(config: Config | None = None) -> ConfigDict: def verify(nat64) -> None: - # pylint: disable=too-many-branches - config_diff = getattr(nat64, 'config_diff') check_kmod(['jool']) @@ -139,13 +135,11 @@ def verify(nat64) -> None: def generate(nat64) -> None: - # pylint: disable=too-many-branches if not nat64: return os.makedirs(JOOL_CONFIG_DIR, exist_ok=True) - # pylint: disable=too-many-nested-blocks if dict_search('source.rule', nat64): for rule, instance in nat64['source']['rule'].items(): if 'deleted' in instance: |
