From 2c3036159262d0d35b94ccf4eedb4a5455f16c88 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Sun, 21 Jul 2024 14:52:47 +0200 Subject: [PATCH] fix: start attributeIDs from -1 (#68) It is no longer needed to fix some IDs. --- convert/patches/dogma_attributes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert/patches/dogma_attributes.py b/convert/patches/dogma_attributes.py index 121f511..6de0448 100644 --- a/convert/patches/dogma_attributes.py +++ b/convert/patches/dogma_attributes.py @@ -1,5 +1,5 @@ def patch(entries, patches, data): - nextAttributeID = -100 # We start some IDs away from 0, so we can have a few reserved numbers. + nextAttributeID = -1 for patch in patches: if patch.get("new"):