Skip to content

Commit

Permalink
fix markup
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash committed Feb 5, 2017
1 parent a2f7d3d commit 552e317
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions gspread/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,16 +406,15 @@ def range(self, name):
:param last_row: Integer row number
:param last_col: Integer row number
Example (A1 notation)::
>>> wks.range('A1:B7')
[<Cell R1C1 "42">, ...]
Example::
Example (numeric)::
>>> # Using A1 notation
>>> wks.range('A1:B7')
[<Cell R1C1 "42">, ...]
>>> wks.range(1, 1, 7, 2)
[<Cell R1C1 "42">, ...]
>>> # Same with numeric boundaries
>>> wks.range(1, 1, 7, 2)
[<Cell R1C1 "42">, ...]
"""
feed = self.client.get_cells_feed(
Expand Down

0 comments on commit 552e317

Please sign in to comment.