From a5303c561bf8396a98f46e2a97d595a60236fa99 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Mon, 27 May 2024 22:46:49 +0200 Subject: [PATCH] fixed a typo in a code comment fixes a linting error --- data/processors/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/processors/export.py b/data/processors/export.py index fdb2815b1..721dca5d3 100644 --- a/data/processors/export.py +++ b/data/processors/export.py @@ -124,7 +124,7 @@ def extract_arch_name(entry: dict) -> str | None: def _make_sure_is_safe(obj: object): """ - This method checks if any of the specified names in removed_names are present in its content + Check if any of the specified names in removed_names are present :param obj: obj to be checked :raises RuntimeError: If any of the specified names (removed_names) are found in the content of the file.