Skip to content

Commit e76c470

Browse files
committed
fix yet another typo
1 parent b7136b6 commit e76c470

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eogrow/utils/testing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def _calculate_parquet_stats(data: pd.DataFrame, config: StatCalcConfig) -> Json
213213
stats = {"columns": list(data), "row_count": len(data)}
214214

215215
if len(data):
216-
subsample: pd.GeoDataFrame = data.sample(min(len(data), config.num_random_values), random_state=42)
216+
subsample: pd.DataFrame = data.sample(min(len(data), config.num_random_values), random_state=42)
217217
for col in subsample.select_dtypes(include="number").columns.values:
218218
subsample[col] = subsample[col].apply(partial(_prepare_value, dtype=subsample[col].dtype))
219219

0 commit comments

Comments
 (0)