From 9ddbc375ec1b47c63410db2a8727c099802c836a Mon Sep 17 00:00:00 2001 From: "Jens W. Klein" Date: Mon, 13 Nov 2023 13:50:02 +0100 Subject: [PATCH] superfluous else removed --- src/collective/elastic/ingest/ingest/rid.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/collective/elastic/ingest/ingest/rid.py b/src/collective/elastic/ingest/ingest/rid.py index 56854d6..b3874a5 100644 --- a/src/collective/elastic/ingest/ingest/rid.py +++ b/src/collective/elastic/ingest/ingest/rid.py @@ -4,6 +4,4 @@ def enrichWithRid(content): # BBB backward compatibility elif "catalog_rid" in content["@components"]: content["rid"] = content["@components"]["catalog_rid"] - else: - pass return content