Skip to content

Commit 41d3692

Browse files
authored
Removed 'image' argument - was not being used in the show_box function (#111)
1 parent 6f74f2b commit 41d3692

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samgeo/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1386,7 +1386,7 @@ def show_points(
13861386
plt.show()
13871387

13881388

1389-
def show_box(image, box, ax):
1389+
def show_box(box, ax):
13901390
ax = plt.gca()
13911391
x0, y0 = box[0], box[1]
13921392
w, h = box[2] - box[0], box[3] - box[1]

0 commit comments

Comments
 (0)