[FIX] pylint relative imports

This commit is contained in:
Stéphane Bidoul
2014-11-18 16:33:51 +01:00
parent 565426266f
commit 0da5dd5078
11 changed files with 16 additions and 16 deletions

View File

@@ -23,4 +23,4 @@
"""
Account Chart Update Wizard
"""
import wizard
from . import wizard

View File

@@ -23,4 +23,4 @@
"""
Account Chart Update Wizard
"""
import wizard_chart_update
from . import wizard_chart_update

View File

@@ -17,4 +17,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import account_constraints
from . import account_constraints

View File

@@ -18,6 +18,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import account_document_template
import account_move_template
import wizard
from . import account_document_template
from . import account_move_template
from . import wizard

View File

@@ -18,4 +18,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import select_template
from . import select_template

View File

@@ -23,4 +23,4 @@
Account renumber wizard
"""
import wizard
from . import wizard

View File

@@ -23,4 +23,4 @@
Account renumber wizard
"""
import wizard_renumber
from . import wizard_renumber

View File

@@ -20,5 +20,5 @@
#
##############################################################################
import account_reversal
import wizard
from . import account_reversal
from . import wizard

View File

@@ -1 +1 @@
import account_move_reverse
from . import account_move_reverse

View File

@@ -22,5 +22,5 @@
#
##############################################################################
import currency_rate_update
import company
from . import currency_rate_update
from . import company

View File

@@ -19,5 +19,5 @@
#
##############################################################################
import partner
import company
from . import partner
from . import company