Skip to content

Commit

Permalink
any typing
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Jun 5, 2024
1 parent c724bc5 commit 6a9704b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stac_geoparquet/arrow/_delta_lake.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import itertools
from pathlib import Path
from typing import TYPE_CHECKING, Iterable
from typing import TYPE_CHECKING, Any, Iterable

import pyarrow as pa
from deltalake import write_deltalake
Expand All @@ -21,7 +21,7 @@ def parse_stac_ndjson_to_delta_lake(
chunk_size: int = 65536,
schema: pa.Schema | None = None,
limit: int | None = None,
**kwargs,
**kwargs: Any,
) -> None:
batches_iter = parse_stac_ndjson_to_arrow(
input_path, chunk_size=chunk_size, schema=schema, limit=limit
Expand Down

0 comments on commit 6a9704b

Please sign in to comment.