Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/changelogs/1.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

:octicons-issue-opened-24: Issue Ref | :fontawesome-solid-thumbtack: Summary | :material-message-text: Description
-|-|-
[No Ref] | Fix `csv_reader` documentation | Fix wrong parameter in `csv_reader` example documentation.


## Enhancements
Expand Down
2 changes: 1 addition & 1 deletion onecode/elements/input/csv_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(
value="/path/to/file.csv",
label="My CSV Reader",
tags=['CSV'],
delimiter=","
sep=","
)

pd.testing.assert_frame_equal(widget, pd.read_csv("/path/to/file.csv"))
Expand Down
Loading