Skip to content
Snippets Groups Projects

Migrate to pyproject

Merged Manon Blanco requested to merge pyproject-migration into master
All threads resolved!
11 files
+ 58
60
Compare changes
  • Side-by-side
  • Inline
Files
11
+ 1
1
@@ -78,7 +78,7 @@ class Region(PageXmlElement):
assert len(list_x) == len(
list_y
), "the list of x and y coordinates do not have the same lengths"
for x, y in zip(list_x, list_y):
for x, y in zip(list_x, list_y, strict=True):
points.append((int(x), int(y)))
return points
else:
Loading