Skip to content

Commit

Permalink
fix: add return type hint to get_people
Browse files Browse the repository at this point in the history
  • Loading branch information
gcollazo committed Jun 6, 2023
1 parent d0447db commit a1ec55e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsons/nation_builder/nation_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def parse_next_params(cls, next_value: str) -> Tuple[str, str]:
def make_next_url(cls, original_url: str, nonce: str, token: str) -> str:
return f"{original_url}?limit=100&__nonce={nonce}&__token={token}"

def get_people(self):
def get_people(self) -> Table:
"""
`Returns:`
A Table of all people stored in Nation Builder.
Expand Down

0 comments on commit a1ec55e

Please sign in to comment.