Skip to content

Commit d05c732

Browse files
committed
Wrap processing import in try/except to pass gui test
1 parent 5011fc7 commit d05c732

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ORStools/gui/ORStoolsDialog.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@
2929

3030
import json
3131
import os
32-
import processing
32+
try:
33+
import processing
34+
except:
35+
pass
3336
import webbrowser
3437

3538
from qgis._core import Qgis

0 commit comments

Comments
 (0)