Skip to content

Commit

Permalink
docs: change 'CSV' to 'csv' in python/custreamz/README.md to match ka…
Browse files Browse the repository at this point in the history
…fka.py (#17041)

This PR corrects a typo in the `python/custreamz/README.md` file by changing the uppercase `'CSV'` to lowercase `'csv'`. This change aligns the documentation with the `message_format` options defined in `python/custreamz/custreamz/kafka.py`, ensuring consistency across the codebase.

Authors:
  - Hirota Akio (https://github.com/a-hirota)

Approvers:
  - Vyas Ramasubramani (https://github.com/vyasr)
  - Matthew Murray (https://github.com/Matt711)

URL: #17041
  • Loading branch information
a-hirota authored Oct 11, 2024
1 parent 891e5aa commit 0b840bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/custreamz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ tips_df = consumer.read_gdf(topic="custreamz_tips",
partition=0,
start=0,
end=10000,
message_format="CSV")
message_format="csv")

print(tips_df.head())
tips_df['tip_percentage'] = tips_df['tip'] / tips_df['total_bill'] * 100
Expand Down

0 comments on commit 0b840bb

Please sign in to comment.