Fix enum population

This commit is contained in:
Matthew Honnibal 2025-05-19 17:24:56 +02:00
parent ceda7b0732
commit cda2bd01d4

View File

@ -26,7 +26,6 @@ IDS = {
NAMES = {value: key for key, value in IDS.items()}
# As of Cython 3.1, the global Python namespace no longer has the enum
# contents by default.
globals().update(IDS)