Index: shared/scripts/configuration/utility.py =================================================================== diff -u -r2d0ac4cb02178ab7da2e01f75087f4d87599cce9 -r7445a9ec1bbaa8dc1ae54ea51d03e74e8f48e62e --- shared/scripts/configuration/utility.py (.../utility.py) (revision 2d0ac4cb02178ab7da2e01f75087f4d87599cce9) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision 7445a9ec1bbaa8dc1ae54ea51d03e74e8f48e62e) @@ -12,13 +12,8 @@ # ############################################################################ - -import sys import time -import test import squish -from configuration import config -from builtins import int as pyInt def check_if_object_is_within_the_container(obj=None, container=None): """ @@ -65,11 +60,9 @@ ScreenObj = squish.waitForObject(screen_object) screenHeight = pyInt(ScreenObj.height) screenWidth = pyInt(ScreenObj.width) - squish.mouseWheel(ScreenObj, screenWidth-1000, - screenHeight-10, 0, -50, squish.Qt.NoModifier) + squish.mouseWheel(ScreenObj, screenWidth-1000, screenHeight-10, 0, -50, squish.Qt.NoModifier) - raise LookupError("zone object is not in view to the user after " + \ - "trying 100 times") + raise LookupError("zone object is not in view to the user after trying 100 times") def convert_seconds_into_min_and_sec(seconds, format="%M:%S"):