From 6a85dff94f680721c3e7df9af76557da0738e563 Mon Sep 17 00:00:00 2001
From: Sergei Trofimov <sergei.trofimov@arm.com>
Date: Thu, 10 Dec 2015 13:39:28 +0000
Subject: [PATCH] pylint: addtional fix

further to bef8fb40efb4cb7ade51714d9a2d0aaa80e9d75d
---
 wlauto/result_processors/notify.py | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/wlauto/result_processors/notify.py b/wlauto/result_processors/notify.py
index 010c29eb..a77d7ccb 100644
--- a/wlauto/result_processors/notify.py
+++ b/wlauto/result_processors/notify.py
@@ -16,9 +16,6 @@
 import collections
 import sys
 
-from wlauto import ResultProcessor
-from wlauto.core.result import IterationResult
-from wlauto.exceptions import ResultProcessorError
 
 try:
     import notify2
@@ -26,6 +23,11 @@ except ImportError:
     notify2 = None
 
 
+from wlauto import ResultProcessor
+from wlauto.core.result import IterationResult
+from wlauto.exceptions import ResultProcessorError
+
+
 class NotifyProcessor(ResultProcessor):
 
     name = 'notify'