[FIX] unused imports

This commit is contained in:
Holger Brunn
2015-06-08 12:37:48 +02:00
parent 8a41968d43
commit 1ca4c6e9d8
3 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp import SUPERUSER_ID, api
from openerp import SUPERUSER_ID
def _post_init_hook(cr, pool):

View File

@@ -18,7 +18,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp import models, fields, api
from openerp import models, fields
class AccountBankStatement(models.Model):

View File

@@ -20,7 +20,7 @@
##############################################################################
import base64
import inspect
from openerp import models, fields, api
from openerp import models, api
class AccountBankStatementImport(models.TransientModel):