Renamed helpers into utils to remove conflicts

This commit is contained in:
Kodjo Sossouvi
2025-06-27 07:54:41 +02:00
parent 9f4b8ab4d0
commit d4f9c61a08
5 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ from fasthtml.components import *
from pandas import DataFrame
from components.BaseComponent import BaseComponent
from helpers.ComponentsInstancesHelper import ComponentsInstancesHelper
from utils.ComponentsInstancesHelper import ComponentsInstancesHelper
from components.admin.commands import ImportHolidaysCommandManager
from components.admin.constants import ADMIN_IMPORT_HOLIDAYS_INSTANCE_ID
from components.datagrid_new.components.DataGrid import DataGrid

View File

@@ -6,7 +6,7 @@ from components.datagrid_new.components.DataGrid import DataGrid
from components.hoildays.helpers.calendar_helper import CalendarHelper
from components.hoildays.helpers.nibelisparser import OffPeriodDetails
from components.repositories.constants import USERS_REPOSITORY_NAME, HOLIDAYS_TABLE_NAME
from helpers.Datahelper import DataHelper
from utils.Datahelper import DataHelper
class HolidaysViewer(BaseComponent):