minor fix

This commit is contained in:
wilson gomez 2021-07-22 08:43:08 -05:00
parent 50f25ce53d
commit 9923fb9e44
3 changed files with 2 additions and 6 deletions

View File

@ -1,8 +1,8 @@
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
import sale
import dash
from . import sale
from . import dash
def register():

View File

@ -2,8 +2,6 @@
# this repository contains the full copyright notices and license terms.
from trytond.pool import PoolMeta
__all__ = ['DashApp']
class DashApp(metaclass=PoolMeta):
__name__ = 'dash.app'

View File

@ -10,8 +10,6 @@ from trytond.pool import Pool, PoolMeta
from trytond.transaction import Transaction
from trytond.model import ModelView, ModelSQL, fields
__all__ = ['Sale', 'AppDelivery', 'AppSaleOrder']
class Sale(metaclass=PoolMeta):
__name__ = 'sale.sale'