Skip to content

Commit 9b75746

Browse files
alexbruyvolaya
authored andcommitted
[processing] remove obsolete import
1 parent 2207669 commit 9b75746

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

python/plugins/processing/tests/AlgorithmsTestBase.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
1616
* *
1717
***************************************************************************
1818
"""
19-
from __future__ import print_function
20-
from builtins import zip
21-
from builtins import str
22-
from builtins import object
2319

2420
__author__ = 'Matthias Kuhn'
2521
__date__ = 'January 2016'
@@ -29,7 +25,13 @@
2925

3026
__revision__ = ':%H$'
3127

28+
from __future__ import print_function
29+
from builtins import zip
30+
from builtins import str
31+
from builtins import object
32+
3233
import qgis # NOQA switch sip api
34+
3335
import os
3436
import yaml
3537
import nose2
@@ -42,7 +44,6 @@
4244

4345
import processing
4446
from processing.modeler.ModelerAlgorithmProvider import ModelerAlgorithmProvider
45-
from processing.modeler.ModelerOnlyAlgorithmProvider import ModelerOnlyAlgorithmProvider
4647
from processing.algs.qgis.QGISAlgorithmProvider import QGISAlgorithmProvider
4748
from processing.algs.grass.GrassAlgorithmProvider import GrassAlgorithmProvider
4849
from processing.algs.grass7.Grass7AlgorithmProvider import Grass7AlgorithmProvider

0 commit comments

Comments
 (0)