Skip to content

Commit

Permalink
Merge pull request gtalarico#153 from nikiljos/main
Browse files Browse the repository at this point in the history
fix: key error in doc
  • Loading branch information
gtalarico committed Apr 19, 2022
2 parents 7ea22f1 + 73f3e19 commit be1b5c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyairtable/api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def all(self, base_id: str, table_name: str, **options):
>>> api.all('base_id', 'table_name', view='MyView', fields=['ColA', '-ColB'])
[{'fields': ... }, ...]
>>> api.all('base_id', 'table_name', maxRecords=50)
>>> api.all('base_id', 'table_name', max_records=50)
[{'fields': ... }, ...]
Args:
Expand All @@ -152,7 +152,7 @@ def all(self, base_id: str, table_name: str, **options):
Returns:
records (``list``): List of Records
>>> records = all(maxRecords=3, view='All')
>>> records = all(max_records=3, view='All')
"""
return super()._all(base_id, table_name, **options)
Expand Down

0 comments on commit be1b5c4

Please sign in to comment.