From 38ab492e2ada946e0552bf41df60ee4f820b0b7b Mon Sep 17 00:00:00 2001 From: JulioLoayzaM Date: Thu, 30 May 2024 15:02:11 +0200 Subject: [PATCH] TestU01: fix lint issue --- crypto_condor/primitives/TestU01.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto_condor/primitives/TestU01.py b/crypto_condor/primitives/TestU01.py index b5a1faf..e7ac513 100644 --- a/crypto_condor/primitives/TestU01.py +++ b/crypto_condor/primitives/TestU01.py @@ -95,7 +95,7 @@ def install_testu01(): # what's going on in case of an error. capture_output = not os.environ.get("GITHUB_ACTIONS", False) try: - result = subprocess.run( + _ = subprocess.run( [str(make)], cwd=t_dir, capture_output=capture_output,