From 19ec364b7211ac335b9d2e68af362a01c3005317 Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Sun, 3 Mar 2024 09:51:53 +0800 Subject: [PATCH] Code quality --- src/proofofwork.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/proofofwork.py b/src/proofofwork.py index 606a5ca4..fccd5951 100644 --- a/src/proofofwork.py +++ b/src/proofofwork.py @@ -273,10 +273,11 @@ def buildCPoW(): if "bsd" in sys.platform: # BSD make call(["make", "-C", os.path.join(paths.codePath(), "bitmsghash"), - '-f', 'Makefile.bsd']) # nosec:B607, B603 + '-f', 'Makefile.bsd']) # nosec B607, B603 else: # GNU make - call(["make", "-C", os.path.join(paths.codePath(), "bitmsghash")]) # nosec:B607, B603 + call(["make", "-C", os.path.join(paths.codePath(), + "bitmsghash")]) # nosec B607, B603 if os.path.exists(os.path.join(paths.codePath(), "bitmsghash", "bitmsghash.so")): init() notifyBuild(True)