Skip to content

Commit

Permalink
Create nomenclature.nuts module
Browse files Browse the repository at this point in the history
  • Loading branch information
dc-almeida committed Sep 19, 2024
1 parent 07ea868 commit 66250c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 1 addition & 2 deletions nomenclature/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@
from nomenclature.codelist import CodeList # noqa
from nomenclature.core import process # noqa
from nomenclature.countries import countries # noqa
from nomenclature.nuts import nuts # noqa
from nomenclature.definition import SPECIAL_CODELIST, DataStructureDefinition # noqa
from nomenclature.processor import RegionAggregationMapping # noqa
from nomenclature.processor import RegionProcessor, RequiredDataValidator # noqa

from pysquirrel import nuts # noqa

# set up logging
logging.basicConfig(
format="%(asctime)s %(levelname)-8s %(message)s",
Expand Down
7 changes: 7 additions & 0 deletions nomenclature/nuts.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import logging

import pysquirrel

logger = logging.getLogger(__name__)

nuts = pysquirrel.nuts

0 comments on commit 66250c9

Please sign in to comment.