From f38cc9b26d428a21684c1625a1c9b228561af66e 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 c60d936a..0b6dc776 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 3a53db9e..7ba1ace6 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