Pyflakes fixes.

This commit is contained in:
Albert Cervera i Areny 2021-03-28 00:31:48 +01:00
parent d6d16a1179
commit e973c3a7dc
2 changed files with 1 additions and 6 deletions

View file

@ -5,8 +5,6 @@ from trytond.pool import Pool, PoolMeta
from trytond.model import fields
from trytond.transaction import Transaction
__all__ = ['PriceList']
class PriceList(metaclass=PoolMeta):
__name__ = 'product.price_list'

View file

@ -1,11 +1,8 @@
# This file is part sale_price_list_currency module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.pool import Pool, PoolMeta
from trytond.pool import PoolMeta
from trytond.model import fields
from trytond.transaction import Transaction
__all__ = ['Sale']
class Sale(metaclass=PoolMeta):