Skip to content

Commit 9a72f93

Browse files
authored
docs: fix code block sample for _next field
1 parent a65db2c commit 9a72f93

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/usage/querying.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ pair is included, where the value is a URI which identifies the next partial set
163163

164164

165165
.. code-block:: python
166+
166167
employees = northwind.entity_sets.Employees.get_entities().select('EmployeeID,LastName').execute()
167168
while True:
168169
for employee in employees:
@@ -173,4 +174,4 @@ pair is included, where the value is a URI which identifies the next partial set
173174
break
174175
175176
# We got a partial answer - continue with next page
176-
employees = northwind.entity_sets.Employees.get_entities().next_url(employees.next_url).execute()
177+
employees = northwind.entity_sets.Employees.get_entities().next_url(employees.next_url).execute()

0 commit comments

Comments
 (0)