docs: fix Python example for including header rows

This commit is contained in:
rzmk 2024-06-20 16:34:32 -04:00
parent e84c5bec8b
commit 1b3f8bb0c9
No known key found for this signature in database

View file

@ -78,7 +78,7 @@ apple,2.50
banana,3.00
strawberry,1.50"""
output = czv.row_count(file_data=data)
output = czv.row_count(file_data=data, include_header_row=True)
print(output)
```