Pyflakes fixes.

This commit is contained in:
Albert Cervera i Areny 2020-12-05 00:40:15 +01:00
parent 1ac3227d90
commit 357d719ef6
2 changed files with 5 additions and 3 deletions

View File

@ -1,14 +1,14 @@
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
from .asset import *
from . import asset
from . import party
def register():
Pool.register(
Asset,
AssetManager,
asset.Asset,
asset.AssetManager,
module='asset_manager', type_='model')
Pool.register(
party.PartyReplace,

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_asset_manager import suite
__all__ = ['suite']