From 2469e89fbc6c525ecb636a9d9c83b43df38986c9 Mon Sep 17 00:00:00 2001 From: Paul Lerner Date: Mon, 12 Feb 2024 18:40:36 +0100 Subject: [PATCH] fix: MorphLabel: rollback to previous names for backward comp --- neot/morph/labels.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/neot/morph/labels.py b/neot/morph/labels.py index 6bb2c91..f146294 100644 --- a/neot/morph/labels.py +++ b/neot/morph/labels.py @@ -12,10 +12,10 @@ class MorphLabel(enum.Enum): - Prefixed = 0 - Suffixed = 1 + Prefix = 0 + Suffix = 1 Neoclassical = 2 - Native = 3 + Compound = 3 Syntagm = 4