diff options
author | tagezi <lera.goncharuk@gmail.com> | 2022-05-27 11:04:25 +0300 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-05-27 11:59:12 +0200 |
commit | bd6cb0d8219b117b1a72774c26d54774c72602da (patch) | |
tree | 36f69bdc7efd8e5ee86d1bf7ebdf60ac490840c7 /sc/qa/uitest/statistics/fTest.py | |
parent | 7a8a25456b39eb6238571c7932eef8e44291ed84 (diff) |
tdf#132293: Removing unused imports from uitests files.
This is the final cleanup of imports in the sc module.
'pyflakes sc' is now empty.
It seems, the most imports were copy-pasted from a file to a new one.
Additionally, the import block and surrounding area made more readable.
Change-Id: I8c4dff1007b9954c35795a7c8a940e8fcf8d7f93
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135036
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sc/qa/uitest/statistics/fTest.py')
-rw-r--r-- | sc/qa/uitest/statistics/fTest.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sc/qa/uitest/statistics/fTest.py b/sc/qa/uitest/statistics/fTest.py index c8e327ac3764..98c0bee35921 100644 --- a/sc/qa/uitest/statistics/fTest.py +++ b/sc/qa/uitest/statistics/fTest.py @@ -7,14 +7,12 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. # from uitest.framework import UITestCase -from uitest.uihelper.common import get_state_as_dict -from uitest.uihelper.common import select_pos from uitest.uihelper.calc import enter_text_to_cell -from libreoffice.calc.document import get_sheet_from_doc -from libreoffice.calc.conditional_format import get_conditional_format_from_sheet + from libreoffice.calc.document import get_cell_by_position from libreoffice.uno.propertyvalue import mkPropertyValues + class tTest(UITestCase): def test_fTest_column(self): with self.ui_test.create_doc_in_start_center("calc") as document: |