mirror of https://github.com/jtesta/ssh-audit.git
Fix pylint reported attribute-defined-outside-init.
This commit is contained in:
parent
4120377c0b
commit
dfb8c302bf
|
@ -193,6 +193,7 @@ class Output(object):
|
||||||
|
|
||||||
|
|
||||||
class OutputBuffer(list):
|
class OutputBuffer(list):
|
||||||
|
# pylint: disable=attribute-defined-outside-init
|
||||||
def __enter__(self):
|
def __enter__(self):
|
||||||
# type: () -> OutputBuffer
|
# type: () -> OutputBuffer
|
||||||
self.__buf = StringIO()
|
self.__buf = StringIO()
|
||||||
|
@ -1193,6 +1194,7 @@ class KexDH(object):
|
||||||
self.__p = p
|
self.__p = p
|
||||||
self.__q = (self.__p - 1) // 2
|
self.__q = (self.__p - 1) // 2
|
||||||
self.__x = None # type: Optional[int]
|
self.__x = None # type: Optional[int]
|
||||||
|
self.__e = None # type: Optional[int]
|
||||||
|
|
||||||
def send_init(self, s):
|
def send_init(self, s):
|
||||||
# type: (SSH.Socket) -> None
|
# type: (SSH.Socket) -> None
|
||||||
|
|
Loading…
Reference in New Issue