tdf#132293 remove unused imports from uitest

Change-Id: I8f47f87a25c3194c984a2deadcc3df86c6060847
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111499
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
diff --git a/uitest/math_tests/start.py b/uitest/math_tests/start.py
index 425cb96..2ad977f 100644
--- a/uitest/math_tests/start.py
+++ b/uitest/math_tests/start.py
@@ -11,7 +11,6 @@

from uitest.framework import UITestCase
from uitest.uihelper.common import type_text, select_pos
from uitest.debug import sleep

import unittest

diff --git a/uitest/uitest/bisecting.py b/uitest/uitest/bisecting.py
index 7d2f074..938baaa 100644
--- a/uitest/uitest/bisecting.py
+++ b/uitest/uitest/bisecting.py
@@ -5,8 +5,6 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#

from functools import wraps

def requires(revision):
    def decorator(f):
        f.requires = revision
diff --git a/uitest/uitest/framework.py b/uitest/uitest/framework.py
index 7149132..072ff50 100644
--- a/uitest/uitest/framework.py
+++ b/uitest/uitest/framework.py
@@ -11,7 +11,7 @@

from uitest.test import UITest

from libreoffice.connection import PersistentConnection, OfficeConnection
from libreoffice.connection import PersistentConnection

class UITestCase(unittest.TestCase):

diff --git a/uitest/uitest/uihelper/keyboard.py b/uitest/uitest/uihelper/keyboard.py
index f2d8890..f2be76d 100644
--- a/uitest/uitest/uihelper/keyboard.py
+++ b/uitest/uitest/uihelper/keyboard.py
@@ -5,7 +5,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#

from libreoffice.uno.propertyvalue import convert_property_values_to_dict, mkPropertyValues
from libreoffice.uno.propertyvalue import mkPropertyValues

def select_all(ui_object):
    ui_object.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))