From f6d7fcda2762f9593dfd2f8547a98fe696808a1d Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Tue, 21 May 2019 02:49:15 +0000 Subject: [PATCH] Remove spurious newline Even though some python styles suggest there should be multiple newlines between methods/classes, for consistency with the surrounding code, it's best to be consistent by having merely one newline between each functional block. MFC after: 1 week --- tests/sys/opencrypto/cryptodev.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/sys/opencrypto/cryptodev.py b/tests/sys/opencrypto/cryptodev.py index 618de24a97a7..b45bc7b9455e 100644 --- a/tests/sys/opencrypto/cryptodev.py +++ b/tests/sys/opencrypto/cryptodev.py @@ -524,7 +524,6 @@ def __next__(self): yield values - def _spdechex(s): return binascii.hexlify(''.join(s.split()))