From bab56e579dc3160a0903e2c781bc286d778c41b9 Mon Sep 17 00:00:00 2001 From: Julie Lee <5377598+synapticlee@users.noreply.github.com> Date: Mon, 29 Jun 2026 16:26:24 -0400 Subject: [PATCH] Tiny typo - y2 is there twice --- documentcloud/annotations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentcloud/annotations.py b/documentcloud/annotations.py index 01b1457..c02290d 100644 --- a/documentcloud/annotations.py +++ b/documentcloud/annotations.py @@ -79,7 +79,7 @@ def create( x2=None, y2=None, ): - coords = [x1, y2, x2, y2] + coords = [x1, y1, x2, y2] if not (all(c is None for c in coords) or all(c is not None for c in coords)): raise ValueError( "x1, y2, x2, y2 must either all be None or all be not None"