Skip to content

Commit

Permalink
move imports to the top
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Oct 10, 2016
1 parent 4292c46 commit 2c9fdae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/plugins/processing/tests/AlgorithmsTestBase.py
Expand Up @@ -16,6 +16,10 @@
* *
***************************************************************************
"""
from __future__ import print_function
from builtins import zip
from builtins import str
from builtins import object

__author__ = 'Matthias Kuhn'
__date__ = 'January 2016'
Expand All @@ -25,10 +29,6 @@

__revision__ = ':%H$'

from __future__ import print_function
from builtins import zip
from builtins import str
from builtins import object

import qgis # NOQA switch sip api

Expand Down

0 comments on commit 2c9fdae

Please sign in to comment.