From b557df8fdcdb68103f0d91c533c85775b6aa456d Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Sat, 15 Apr 2023 21:08:48 +0300 Subject: [PATCH] - minor fixes --- appEditors/AppGeoEditor.py | 3 ++- appPlugins/ToolFiducials.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/appEditors/AppGeoEditor.py b/appEditors/AppGeoEditor.py index 71831c2e..e18c2fce 100644 --- a/appEditors/AppGeoEditor.py +++ b/appEditors/AppGeoEditor.py @@ -33,7 +33,8 @@ from appEditors.geo_plugins.GeoCopyPlugin import CopyEditorTool from vispy.geometry import Rect -from shapely import LineString, LinearRing, MultiLineString, Polygon, MultiPolygon, Point, box, base +from shapely import LineString, LinearRing, MultiLineString, Polygon, MultiPolygon, Point, box +from shapely.geometry import base from shapely.ops import unary_union, linemerge from shapely.affinity import translate, scale, skew, rotate from shapely.geometry.polygon import orient diff --git a/appPlugins/ToolFiducials.py b/appPlugins/ToolFiducials.py index bab14589..f5803e0f 100644 --- a/appPlugins/ToolFiducials.py +++ b/appPlugins/ToolFiducials.py @@ -15,7 +15,7 @@ import logging from copy import deepcopy import math -from shapely import LineString, Polygon, MultiPolygon, box, Point, base +from shapely import LineString, Polygon, MultiPolygon, box, Point from shapely.geometry import base from shapely.ops import unary_union