Skip to content

Commit

Permalink
Fix error in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Aug 7, 2024
1 parent 6d3dbfd commit d90d30a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Here's a quick example of how to use the MultiCSV library:
import csv
import multicsv

with multicsv.open(example_file, mode='w+') as csv_file:
with multicsv.open('example.csv', mode='w+') as csv_file:
# Write the CSV content to the file
csv_file.section('section1').write("header1,header2,header3\nvalue1,value2,value3\n")
csv_file.section('section2').write("header4,header5,header6\nvalue4,value5,value6\n")
Expand Down

0 comments on commit d90d30a

Please sign in to comment.