From ff2f901690c4638823bfb361b59d57035a4c9d0b 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] pylint relative imports --- account_move_template/__init__.py | 6 +++--- account_move_template/wizard/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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