Skip to content

Commit f9b9f9d

Browse files
committed
Update list_calendars docs
1 parent 3d61ad2 commit f9b9f9d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

O365/calendar.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1944,17 +1944,17 @@ def list_calendars(self, limit=None, *, query=None, order_by=None, batch=None):
19441944
""" Gets a list of calendars
19451945
19461946
To use query an order_by check the OData specification here:
1947-
http://docs.oasis-open.org/odata/odata/v4.0/errata03/os/complete/
1948-
part2-url-conventions/odata-v4.0-errata03-os-part2-url-conventions
1949-
-complete.html
1947+
https://docs.oasis-open.org/odata/odata/v4.0/errata03/os/odata-v4.0-errata03-os.html
19501948
19511949
:param int limit: max no. of calendars to get. Over 999 uses batch.
19521950
:param query: applies a OData filter to the request
19531951
:type query: Query or str
19541952
:param order_by: orders the result set based on this condition
19551953
:type order_by: Query or str
1954+
:param int batch: batch size, retrieves items in
1955+
batches allowing to retrieve more items than the limit.
19561956
:return: list of calendars
1957-
:rtype: list[Calendar]
1957+
:rtype: list[Calendar] or Pagination
19581958
19591959
"""
19601960
url = self.build_url(self._endpoints.get('root_calendars'))

0 commit comments

Comments
 (0)