trytond-stock_move_warehouse/__init__.py
Albert Cervera i Areny ef0afa7e4e Pyflakes fixes.
2021-03-28 00:37:04 +01:00

11 lines
332 B
Python

# This file is part stock_move_warehouse 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
from . import move
def register():
Pool.register(
move.Move,
module='stock_move_warehouse', type_='model')