mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
9 lines
225 B
Python
9 lines
225 B
Python
# -*- coding: utf-8 -*-
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
|
|
|
from odoo import api, fields, models, _
|
|
|
|
|
|
class BaseLanguageInstall(models.TransientModel):
|
|
_inherit = "base.language.install"
|