Pyflakes fixes.

This commit is contained in:
Albert Cervera i Areny 2021-03-27 23:44:33 +01:00
parent 1fb51dad82
commit 59c5a414b9
3 changed files with 4 additions and 7 deletions

View File

@ -1,11 +1,9 @@
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
from .shop import *
from . import shop
def register():
Pool.register(
Shop,
shop.Shop,
module='sale_shop_trade_info', type_='model')

View File

@ -4,8 +4,6 @@
from trytond.model import fields
from trytond.pool import PoolMeta
__all__ = ['Shop']
class Shop(metaclass=PoolMeta):
__name__ = 'sale.shop'

View File

@ -1,4 +1,5 @@
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from .test_sale_shop_trade_info import suite
__all__ = ['suite']