Skip to content

Commit

Permalink
[FIX] Still some PEP8 erros
Browse files Browse the repository at this point in the history
  • Loading branch information
eLBati committed Aug 7, 2014
1 parent c46013d commit 7db620c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion sale_cancel_reason/model/sale.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
#

from openerp.osv import orm, fields
from openerp.tools.translate import _


class sale_order(orm.Model):
Expand Down
1 change: 0 additions & 1 deletion sale_condition_text/condition.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#
#
from osv import osv, fields
import pooler


class AccountConditionText(osv.osv):
Expand Down
1 change: 1 addition & 0 deletions sale_condition_text/sale_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#
#
from osv import osv, fields
from openerp.tools.translate import _


class SaleOrder(osv.osv):
Expand Down
4 changes: 2 additions & 2 deletions sale_dropshipping/purchase.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ def action_picking_create(self, cr, uid, ids, context=None):
if purchase.sale_flow == 'direct_delivery':
if (
purchase.sale_id
and purchase.sale_id.order_policy == 'picking')
:
and purchase.sale_id.order_policy == 'picking'
):
invoice_control = '2binvoiced'
else:
invoice_control = 'none'
Expand Down
2 changes: 1 addition & 1 deletion sale_quotation_number/sale_quotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#
#

from openerp.osv import fields, orm
from openerp.osv import orm


class sale_order(orm.Model):
Expand Down

0 comments on commit 7db620c

Please sign in to comment.