Skip to content

Commit b0eb85d

Browse files
committed
[processing][grass] Add some missing imports
(cherry-picked from f928e3d)
1 parent d95c21e commit b0eb85d

File tree

5 files changed

+7
-0
lines changed

5 files changed

+7
-0
lines changed

python/plugins/processing/algs/grass7/ext/r_colors.py

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
import os
2929
from processing.algs.grass7.Grass7Utils import Grass7Utils
30+
from processing.tools.system import getTempFilename
3031

3132

3233
def checkParameterValuesBeforeExecuting(alg, parameters, context):

python/plugins/processing/algs/grass7/ext/r_mask_rast.py

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525

2626
__revision__ = '$Format:%H$'
2727

28+
from processing.algs.grass7.Grass7Utils import Grass7Utils
29+
2830

2931
def processCommand(alg, parameters, context, feedback):
3032
# Remove input

python/plugins/processing/algs/grass7/ext/r_mask_vect.py

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525

2626
__revision__ = '$Format:%H$'
2727

28+
from processing.algs.grass7.Grass7Utils import Grass7Utils
29+
2830

2931
def processCommand(alg, parameters, context, feedback):
3032
# Remove input

python/plugins/processing/algs/grass7/ext/v_edit.py

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828

2929
import os
30+
from processing.tools.system import getTempFilename
3031

3132

3233
def checkParameterValuesBeforeExecuting(alg, parameters, context):

python/plugins/processing/algs/grass7/ext/v_rectify.py

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
import os
2929
from processing.algs.grass7.Grass7Utils import Grass7Utils
30+
from processing.tools.system import getTempFilename
3031

3132

3233
def checkParameterValuesBeforeExecuting(alg, parameters, context):

0 commit comments

Comments
 (0)