From 1e5ccd9c9da63211cab1dfce27cc5cdd149c1622 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 5 Oct 2024 06:43:19 +0000 Subject: [PATCH] style: Automatic code formatting --- modules/signatures/all/packer_upx.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/signatures/all/packer_upx.py b/modules/signatures/all/packer_upx.py index 27bcbbc1..b84ac26c 100644 --- a/modules/signatures/all/packer_upx.py +++ b/modules/signatures/all/packer_upx.py @@ -15,6 +15,7 @@ from lib.cuckoo.common.abstracts import Signature + class UPXCompressed(Signature): name = "packer_upx" description = "The executable is compressed using UPX" @@ -37,6 +38,6 @@ def run(self): for section in pe["sections"]: if section["name"].lower().startswith(".upx"): self.data.append({"section": section}) - ret = True + ret = True return ret