mirror of
https://github.com/NaN-tic/trytond-product_purchase_sequence.git
synced 2023-12-14 04:02:54 +01:00
pyflakes fixed
This commit is contained in:
parent
61716cd31f
commit
1f4a9b3268
4 changed files with 2 additions and 9 deletions
|
@ -1,9 +1,7 @@
|
|||
# This file is part product_purchase_sequence module for Tryton.
|
||||
# The COPYRIGHT file at the top level of this repository contains
|
||||
# the full copyright notices and license terms.
|
||||
from trytond.model import ModelView, ModelSQL, ModelSingleton, fields
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.pool import PoolMeta
|
||||
|
||||
__all__ = [
|
||||
'ProductConfiguration',
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#This file is part product_purchase_sequence module for Tryton.
|
||||
#The COPYRIGHT file at the top level of this repository contains
|
||||
#the full copyright notices and license terms.
|
||||
|
||||
from trytond.model import ModelView, ModelSQL, fields
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
|
||||
__all__ = ['Product']
|
||||
|
|
1
setup.py
1
setup.py
|
@ -5,7 +5,6 @@
|
|||
|
||||
from setuptools import setup
|
||||
import re
|
||||
import os
|
||||
import ConfigParser
|
||||
|
||||
config = ConfigParser.ConfigParser()
|
||||
|
|
|
@ -12,9 +12,7 @@ if os.path.isdir(DIR):
|
|||
|
||||
import unittest
|
||||
import trytond.tests.test_tryton
|
||||
from trytond.tests.test_tryton import POOL, DB_NAME, USER, CONTEXT, test_view,\
|
||||
test_depends
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.tests.test_tryton import test_view, test_depends
|
||||
|
||||
|
||||
class ProductPurchaseSequenceTestCase(unittest.TestCase):
|
||||
|
|
Loading…
Reference in a new issue