Skip to content

Commit ea854da

Browse files
authored
Update _utils.py fixed bug in extends
1 parent 02e764d commit ea854da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/segger/data/parquet/_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ def get_xy_extents(
6262
del parquet_file
6363
gc.collect()
6464
x_min = x_col.min()
65-
x_min = y_col.min()
65+
y_min = y_col.min()
6666
x_max = x_col.max()
67-
x_max = y_col.max()
67+
y_max = y_col.max()
6868
bounds = shapely.geometry.box(x_min, y_min, x_max, y_max)
6969
return bounds
7070

0 commit comments

Comments
 (0)