Skip to content

Commit

Permalink
type args
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Apr 19, 2024
1 parent 514abd8 commit 4add29e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stac_geoparquet/to_parquet.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import json
from typing import Any

import pyarrow as pa
import pyarrow.parquet as pq
Expand All @@ -7,7 +8,7 @@
WGS84_CRS_JSON = CRS.from_epsg(4326).to_json_dict()


def to_parquet(table: pa.Table, where, **kwargs) -> None:
def to_parquet(table: pa.Table, where: Any, **kwargs: Any) -> None:
"""Write an Arrow table with STAC data to GeoParquet
This writes metadata compliant with GeoParquet 1.1.
Expand Down

0 comments on commit 4add29e

Please sign in to comment.