From b0f59faac3d804eda407a36e97fa2848e18789b2 Mon Sep 17 00:00:00 2001 From: Thomas Patzke Date: Sat, 7 Jan 2023 00:37:47 +0100 Subject: [PATCH] Fixed type hint causing issues --- tools/sigma/backends/lacework.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sigma/backends/lacework.py b/tools/sigma/backends/lacework.py index df4e60f0c..4b88e0666 100644 --- a/tools/sigma/backends/lacework.py +++ b/tools/sigma/backends/lacework.py @@ -658,7 +658,7 @@ class LaceworkQuery: return title, query_id @staticmethod - def get_query_sources(logsource_name, logsource_config) -> list[str]: + def get_query_sources(logsource_name, logsource_config): # 4. validate service has a source mapping source = safe_get(logsource_config, 'source', str) sources = safe_get(logsource_config, 'sources', list)