From 2175e25f4d02cddcf48a927b0aab424c9c790f4a Mon Sep 17 00:00:00 2001
From: Ilona LAZRAK IL279565 <ilona.lazrak@gmail.com>
Date: Thu, 25 Jul 2024 13:42:06 +0200
Subject: [PATCH] fix :  changed aidge_core.export to aidge_core.export_utils

---
 aidge_export_arm_cortexm/export.py    | 2 +-
 aidge_export_arm_cortexm/operators.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/aidge_export_arm_cortexm/export.py b/aidge_export_arm_cortexm/export.py
index f211fbb..92ad238 100644
--- a/aidge_export_arm_cortexm/export.py
+++ b/aidge_export_arm_cortexm/export.py
@@ -4,7 +4,7 @@ import shutil
 from pathlib import Path
 import numpy as np
 
-from aidge_core.export.code_generation import *
+from aidge_core.export_utils.code_generation import *
 from aidge_export_arm_cortexm.utils import (ROOT, AVAILABLE_BOARDS, has_board, \
                                             OPERATORS_REGISTRY, supported_operators)
 import aidge_export_arm_cortexm.operators
diff --git a/aidge_export_arm_cortexm/operators.py b/aidge_export_arm_cortexm/operators.py
index 0d2a3c6..f9520fe 100644
--- a/aidge_export_arm_cortexm/operators.py
+++ b/aidge_export_arm_cortexm/operators.py
@@ -8,7 +8,7 @@ from typing import Tuple, List, Union, Dict
 
 import aidge_core
 from aidge_core import ExportNode
-from aidge_core.export.code_generation import *
+from aidge_core.export_utils.code_generation import *
 from aidge_export_arm_cortexm.utils import ROOT, operator_register
 from aidge_export_arm_cortexm.utils.converter import numpy_dtype2ctype, aidge_datatype2dataformat, aidge_datatype2ctype
 from aidge_export_arm_cortexm.utils.generation import *
-- 
GitLab