From efcc90e23b94e212e85bdf3461ec41ea4d262e8c Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Thu, 7 Mar 2024 06:52:26 +0000 Subject: [PATCH] style: Automatic code formatting --- modules/signatures/windows/system_location_discovery.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/signatures/windows/system_location_discovery.py b/modules/signatures/windows/system_location_discovery.py index eec9276b..c1f8d5b6 100644 --- a/modules/signatures/windows/system_location_discovery.py +++ b/modules/signatures/windows/system_location_discovery.py @@ -15,6 +15,7 @@ from lib.cuckoo.common.abstracts import Signature + class QueriesKeyboardLayout(Signature): name = "queries_keyboard_layout" description = "Queries the keyboard layout" @@ -34,6 +35,6 @@ def __init__(self, *args, **kwargs): def on_call(self, call, process): self.mark_call() self.ret = True - + def on_complete(self): return self.ret