Pyflakes fixes.

This commit is contained in:
Albert Cervera i Areny 2021-03-28 00:21:58 +01:00
parent 305987384a
commit e43eb52b20
3 changed files with 6 additions and 7 deletions

View File

@ -1,14 +1,13 @@
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
from .production import *
from . import production
def register():
Pool.register(
Production,
SplitProductionStart,
production.Production,
production.SplitProductionStart,
module='production_split_serial_number', type_='model')
Pool.register(
SplitProduction,
production.SplitProduction,
module='production_split_serial_number', type_='wizard')

View File

@ -5,8 +5,6 @@ from trytond.pool import Pool, PoolMeta
from trytond.pyson import Eval, Equal
from trytond.transaction import Transaction
__all__ = ['Production', 'SplitProductionStart', 'SplitProduction']
class Production(metaclass=PoolMeta):
__name__ = 'production'

View File

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