We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03ffb08 commit 8c02dc8Copy full SHA for 8c02dc8
README.md
@@ -344,7 +344,7 @@ Initialize it with the required arguments and call the method `write`:
344
```python
345
with open("users.csv", "w") as f:
346
w = DataclassWriter(f, users, User)
347
- w.writer()
+ w.write()
348
```
349
350
That's it! Let's break down the snippet above.
@@ -386,7 +386,7 @@ depending on your use case it makes sense to change it. The `DataclassWriter` ha
386
w.map("firstname").to("First name")
387
w.map("lastname").to("Last name")
388
389
390
391
392
The CSV output of the snippet above will be:
0 commit comments