Skip to content

Commit

Permalink
Quick fix on Table documentation.
Browse files Browse the repository at this point in the history
The docs for get_field_range was missing a line of code.
  • Loading branch information
philippe2803 authored Mar 28, 2020
1 parent 54bed48 commit 6c7109d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions documentation/table.rst
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,7 @@ those requests into the table using the `batch_to` parameter. See below:
# recommended to manually add the requests to the table batch list, or
# a request will be executed on each iteration.
for item in table:
cell_range = item.get_field_range("age")
cell_range.add_dropdown(choices=range(0, 100), batch_to=table)
table.commit()
Expand Down

0 comments on commit 6c7109d

Please sign in to comment.