From 0da5dd50787a7d916f9509150c284ee71799e6f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Tue, 18 Nov 2014 16:33:51 +0100 Subject: [PATCH] [FIX] pylint relative imports --- account_chart_update/__init__.py | 2 +- account_chart_update/wizard/__init__.py | 2 +- account_constraints/__init__.py | 2 +- account_move_template/__init__.py | 6 +++--- account_move_template/wizard/__init__.py | 2 +- account_renumber/__init__.py | 2 +- account_renumber/wizard/__init__.py | 2 +- account_reversal/__init__.py | 4 ++-- account_reversal/wizard/__init__.py | 2 +- currency_rate_update/__init__.py | 4 ++-- l10n_fr_siret/__init__.py | 4 ++-- 11 files changed, 16 insertions(+), 16 deletions(-) diff --git a/account_chart_update/__init__.py b/account_chart_update/__init__.py index 6ca12272a..d04374b71 100644 --- a/account_chart_update/__init__.py +++ b/account_chart_update/__init__.py @@ -23,4 +23,4 @@ """ Account Chart Update Wizard """ -import wizard +from . import wizard diff --git a/account_chart_update/wizard/__init__.py b/account_chart_update/wizard/__init__.py index 7adb37845..787022f15 100644 --- a/account_chart_update/wizard/__init__.py +++ b/account_chart_update/wizard/__init__.py @@ -23,4 +23,4 @@ """ Account Chart Update Wizard """ -import wizard_chart_update +from . import wizard_chart_update diff --git a/account_constraints/__init__.py b/account_constraints/__init__.py index 75011b038..403b23fcb 100644 --- a/account_constraints/__init__.py +++ b/account_constraints/__init__.py @@ -17,4 +17,4 @@ # along with this program. If not, see . # ############################################################################## -import account_constraints +from . import account_constraints diff --git a/account_move_template/__init__.py b/account_move_template/__init__.py index c60d936ac..0b6dc776b 100644 --- a/account_move_template/__init__.py +++ b/account_move_template/__init__.py @@ -18,6 +18,6 @@ # along with this program. If not, see . # ############################################################################## -import account_document_template -import account_move_template -import wizard +from . import account_document_template +from . import account_move_template +from . import wizard diff --git a/account_move_template/wizard/__init__.py b/account_move_template/wizard/__init__.py index 3a53db9e1..7ba1ace6f 100644 --- a/account_move_template/wizard/__init__.py +++ b/account_move_template/wizard/__init__.py @@ -18,4 +18,4 @@ # along with this program. If not, see . # ############################################################################## -import select_template +from . import select_template diff --git a/account_renumber/__init__.py b/account_renumber/__init__.py index 0981c0428..f781080db 100644 --- a/account_renumber/__init__.py +++ b/account_renumber/__init__.py @@ -23,4 +23,4 @@ Account renumber wizard """ -import wizard +from . import wizard diff --git a/account_renumber/wizard/__init__.py b/account_renumber/wizard/__init__.py index 510461703..c1ceefa32 100644 --- a/account_renumber/wizard/__init__.py +++ b/account_renumber/wizard/__init__.py @@ -23,4 +23,4 @@ Account renumber wizard """ -import wizard_renumber +from . import wizard_renumber diff --git a/account_reversal/__init__.py b/account_reversal/__init__.py index 7966fb050..14167e578 100644 --- a/account_reversal/__init__.py +++ b/account_reversal/__init__.py @@ -20,5 +20,5 @@ # ############################################################################## -import account_reversal -import wizard +from . import account_reversal +from . import wizard diff --git a/account_reversal/wizard/__init__.py b/account_reversal/wizard/__init__.py index cbd7265f9..eb5b2eb3d 100644 --- a/account_reversal/wizard/__init__.py +++ b/account_reversal/wizard/__init__.py @@ -1 +1 @@ -import account_move_reverse +from . import account_move_reverse diff --git a/currency_rate_update/__init__.py b/currency_rate_update/__init__.py index 965f9e31a..952ce0fea 100644 --- a/currency_rate_update/__init__.py +++ b/currency_rate_update/__init__.py @@ -22,5 +22,5 @@ # ############################################################################## -import currency_rate_update -import company +from . import currency_rate_update +from . import company diff --git a/l10n_fr_siret/__init__.py b/l10n_fr_siret/__init__.py index 7c560ac5e..3caa79b6b 100644 --- a/l10n_fr_siret/__init__.py +++ b/l10n_fr_siret/__init__.py @@ -19,5 +19,5 @@ # ############################################################################## -import partner -import company +from . import partner +from . import company