Pyflakes fixes.

This commit is contained in:
Albert Cervera i Areny 2021-03-28 00:26:18 +01:00
parent 529a497544
commit 0a0d2f836a
3 changed files with 5 additions and 6 deletions

View File

@ -1,9 +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 .work import *
from . import work
def register():
Pool.register(
Work,
work.Work,
module='project_task_invoice', type_='model')

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

View File

@ -5,8 +5,6 @@ from trytond.model import fields
from trytond.pool import PoolMeta
from trytond.pyson import Eval
__all__ = ['Work']
class Work(metaclass=PoolMeta):
__name__ = 'project.work'