Navigation Menu

Skip to content

Commit

Permalink
[processing][grass] Add some missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 9, 2018
1 parent c50a039 commit f928e3d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/plugins/processing/algs/grass7/ext/r_colors.py
Expand Up @@ -27,6 +27,7 @@

import os
from processing.algs.grass7.Grass7Utils import Grass7Utils
from processing.tools.system import getTempFilename


def checkParameterValuesBeforeExecuting(alg, parameters, context):
Expand Down
2 changes: 2 additions & 0 deletions python/plugins/processing/algs/grass7/ext/r_mask_rast.py
Expand Up @@ -25,6 +25,8 @@

__revision__ = '$Format:%H$'

from processing.algs.grass7.Grass7Utils import Grass7Utils


def processCommand(alg, parameters, context, feedback):
# Remove input
Expand Down
2 changes: 2 additions & 0 deletions python/plugins/processing/algs/grass7/ext/r_mask_vect.py
Expand Up @@ -25,6 +25,8 @@

__revision__ = '$Format:%H$'

from processing.algs.grass7.Grass7Utils import Grass7Utils


def processCommand(alg, parameters, context, feedback):
# Remove input
Expand Down
1 change: 1 addition & 0 deletions python/plugins/processing/algs/grass7/ext/v_edit.py
Expand Up @@ -27,6 +27,7 @@


import os
from processing.tools.system import getTempFilename


def checkParameterValuesBeforeExecuting(alg, parameters, context):
Expand Down
1 change: 1 addition & 0 deletions python/plugins/processing/algs/grass7/ext/v_rectify.py
Expand Up @@ -27,6 +27,7 @@

import os
from processing.algs.grass7.Grass7Utils import Grass7Utils
from processing.tools.system import getTempFilename


def checkParameterValuesBeforeExecuting(alg, parameters, context):
Expand Down

0 comments on commit f928e3d

Please sign in to comment.