]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
manager: ignore false positive pylint errors
authorAleš Mrázek <ales.mrazek@nic.cz>
Mon, 5 Jun 2023 13:33:21 +0000 (15:33 +0200)
committerAleš Mrázek <ales.mrazek@nic.cz>
Mon, 5 Jun 2023 13:34:21 +0000 (15:34 +0200)
manager/knot_resolver_manager/kresd_controller/interface.py
manager/knot_resolver_manager/kresd_controller/supervisord/__init__.py

index cab754ae9485f332e17901770b671c224bc10df6..c0d22a527c66085c840487ec3f831b63e80c1727 100644 (file)
@@ -2,7 +2,7 @@ import asyncio
 import itertools
 import logging
 import sys
-from abc import ABC, abstractmethod
+from abc import ABC, abstractmethod  # pylint: disable=no-name-in-module
 from enum import Enum, auto
 from typing import Dict, Iterable, Optional, Type, TypeVar
 from weakref import WeakValueDictionary
index d246822da19ccacb4d256f7fbc2740ed41d959f4..f9d3171fb333e4448aca1cbef5a77418401e09d2 100644 (file)
@@ -217,7 +217,7 @@ class SupervisordSubprocess(Subprocess):
 
 
 class SupervisordSubprocessController(SubprocessController):
-    def __init__(self):
+    def __init__(self):  # pylint: disable=super-init-not-called
         self._controller_config: Optional[KresConfig] = None
 
     def __str__(self):