pyflakes fixed

This commit is contained in:
resteve 2013-04-26 14:22:02 +02:00
parent 61716cd31f
commit 1f4a9b3268
4 changed files with 2 additions and 9 deletions

View file

@ -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',

View file

@ -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']

View file

@ -5,7 +5,6 @@
from setuptools import setup
import re
import os
import ConfigParser
config = ConfigParser.ConfigParser()

View file

@ -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):