docs: show types in Python examples

This commit is contained in:
rzmk 2024-06-20 16:49:20 -04:00
parent 786d0f38ba
commit 25a2568ea0
No known key found for this signature in database
3 changed files with 13 additions and 8 deletions

View file

@ -72,14 +72,14 @@ Or use [`uv pip`](https://github.com/astral-sh/uv) instead of `pip`.
```python
import czv
data = """fruits,price
data: str = """fruits,price
apple,2.50
banana,3.00
strawberry,1.50"""
output = czv.row_count(file_data=data, include_header_row=True)
output: int = czv.row_count(file_data=data, include_header_row=True)
print(output)
print(output) # 4
```
## Available operations