Skip to content

Commit

Permalink
Update custom-data.rst
Browse files Browse the repository at this point in the history
fixed variable name in documentation
  • Loading branch information
ruddra authored May 8, 2023
1 parent dcdcced commit a91df29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pages/custom-data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Moreover, you can use `accessor` with the table columns to access nested values.
>>> class MyTable(tables.Table):
... abc = tables.Column(accessor="abc__one__two") # or abc.one.two
>>> table = MyTable(data)
>>> list(map(str, t.rows[1]))
>>> list(map(str, table.rows[1]))
['four']

.. _table.render_foo:
Expand Down

0 comments on commit a91df29

Please sign in to comment.