Fixup pylint issues

This commit is contained in:
Roman Zeyde
2022-07-10 19:51:36 +03:00
parent 807c25a9fc
commit 8c5a9bfe02
3 changed files with 4 additions and 4 deletions

View File

@@ -167,6 +167,6 @@ class Handler:
return util.frame(code, data)
def _unsupported_extension(buf):
def _unsupported_extension(buf): # pylint: disable=unused-argument
code = util.pack('B', msg_code('SSH_AGENT_EXTENSION_FAILURE'))
return util.frame(code)

View File

@@ -21,7 +21,7 @@ class MockDevice(device.interface.Device): # pylint: disable=abstract-method
def package_name(cls):
return 'fake-device-agent'
def connect(self): # pylint: disable=no-self-use
def connect(self):
return mock.Mock()
def pubkey(self, identity, ecdh=False): # pylint: disable=unused-argument