chore: Se renombra carpeta util y archivo municipalities
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Camilo Gonzalez 2023-08-05 16:41:13 -05:00
parent b3b897db63
commit 9a7a95e00f
7 changed files with 4 additions and 4 deletions

View File

@ -2,9 +2,9 @@ from trytond.model import ModelSQL, ModelView, fields
from datetime import date from datetime import date
from .Util.interest import Interest from .selections.interest import Interest
from .Util.call_types import CallTypes from .selections.call_types import CallTypes
from .Util.call_results import CallResults from .selections.call_results import CallResults
class Call(ModelSQL, ModelView): class Call(ModelSQL, ModelView):

View File

@ -1,7 +1,7 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of # This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms. # this repository contains the full copyright notices and license terms.
from trytond.model import ModelSQL, ModelView, fields from trytond.model import ModelSQL, ModelView, fields
from .Util.interest import Interest from .selections.interest import Interest
class ProspectTrace(ModelSQL, ModelView): class ProspectTrace(ModelSQL, ModelView):