From 9730f51f20907fa78ab63ab34c46d3fd69f4e78e Mon Sep 17 00:00:00 2001 From: Alice BRENON <alice.brenon@ens-lyon.fr> Date: Wed, 20 Mar 2024 15:44:13 +0100 Subject: [PATCH] Rename ENE labels to match the camelCase convention used in the rest of the repos + expose it through the main GEODE module --- GEODE/ENE/__init__.py | 2 +- GEODE/__init__.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/GEODE/ENE/__init__.py b/GEODE/ENE/__init__.py index e05893a..159ee55 100644 --- a/GEODE/ENE/__init__.py +++ b/GEODE/ENE/__init__.py @@ -1,4 +1,4 @@ -ene_labels = [ +eneLabels = [ "Domain-mark", "Head", "Latlong", diff --git a/GEODE/__init__.py b/GEODE/__init__.py index 928e7ca..b596d1f 100644 --- a/GEODE/__init__.py +++ b/GEODE/__init__.py @@ -18,6 +18,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. """ from argparse import ArgumentParser +from GEODE.ENE import eneLabels from GEODE.Metadata import article, articleKey, paragraph, paragraphKey, \ fromKey, relativePath, toKey, uid from GEODE.Classification import superdomains -- GitLab