mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-06-27 00:01:01 +03:00
Fix some pylint warnings
Add docstrings where they were missing and fix a too-long line
This commit is contained in:
@ -310,7 +310,10 @@ class MbedTlsTest(BaseHostTest):
|
||||
|
||||
param_bytes, length = self.test_vector_to_bytes(function_id,
|
||||
dependencies, args)
|
||||
self.send_kv(''.join('{:02x}'.format(x) for x in length), ''.join('{:02x}'.format(x) for x in param_bytes))
|
||||
self.send_kv(
|
||||
''.join('{:02x}'.format(x) for x in length),
|
||||
''.join('{:02x}'.format(x) for x in param_bytes)
|
||||
)
|
||||
|
||||
@staticmethod
|
||||
def get_result(value):
|
||||
|
Reference in New Issue
Block a user