Pyflakes fixes.

This commit is contained in:
Albert Cervera i Areny 2021-03-28 00:37:04 +01:00
parent 7b3a0a70b9
commit ef0afa7e4e
2 changed files with 2 additions and 5 deletions

View file

@ -2,10 +2,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 .move import *
from . import move
def register():
Pool.register(
Move,
move.Move,
module='stock_move_warehouse', type_='model')

View file

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