Skip to content

Commit fc82961

Browse files
authored
fix: docstring for write_geoparquet (#185)
1 parent 6cbb699 commit fc82961

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Write stac-geoparquet
33
---
44

5-
# parquet
5+
# geoparquet
66

77
::: rustac.GeoparquetWriter
88
::: rustac.geoparquet_writer

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ nav:
3131
- arrow: api/arrow.md
3232
- duckdb: api/duckdb.md
3333
- migrate: api/migrate.md
34-
- parquet: api/parquet.md
34+
- geoparquet: api/geoparquet.md
3535
- read: api/read.md
3636
- search: api/search.md
3737
- stac: api/stac.md

python/rustac/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ async def geoparquet_writer(
3636
3737
Examples:
3838
39-
>>> with geoparquet_writer(item_batches[0], "out.parquet") as w:
39+
>>> async with geoparquet_writer(item_batches[0], "out.parquet") as w:
4040
... for items in item_batches[1:]:
41-
... w.write(items)
41+
... await w.write(items)
4242
...
4343
>>>
4444
"""

0 commit comments

Comments
 (0)