Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up docs args #424

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions parsons/bloomerang/bloomerang.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def _base_delete(self, endpoint, entity_id=None):
def create_constituent(self, **kwargs):
"""
`Args:`
**kwargs:`
**kwargs:
Fields to include, e.g., FirstName = 'Rachel'.

See the Bloomerang API docs for a full list of `fields <https://bloomerang.co/features/integrations/api/rest-api#/Constituents/post_constituent>`_. # noqa
Expand All @@ -111,7 +111,7 @@ def update_constituent(self, constituent_id, **kwargs):
`Args:`
constituent_id: str or int
Constituent ID to update
**kwargs:`
**kwargs:
Fields to update, e.g., FirstName = 'RJ'.

See the Bloomerang API docs for a full list of `fields <https://bloomerang.co/features/integrations/api/rest-api#/Constituents/put_constituent__id_>`_. # noqa
Expand Down Expand Up @@ -153,7 +153,7 @@ def get_constituents(self, page_number=1, page_size=50):
def create_transaction(self, **kwargs):
"""
`Args:`
**kwargs:`
**kwargs:
Fields to include, e.g., CreditCardType = 'Visa'.

See the Bloomerang API docs for a full list of `fields <https://bloomerang.co/features/integrations/api/rest-api#/Transactions/post_transaction>`_. # noqa
Expand All @@ -165,7 +165,7 @@ def update_transaction(self, transaction_id, **kwargs):
`Args:`
transaction_id: str or int
Transaction ID to update
**kwargs:`
**kwargs:
Fields to update, e.g., CreditCardType = 'Visa'.

See the Bloomerang API docs for a full list of `fields <https://bloomerang.co/features/integrations/api/rest-api#/Transactions/put_transaction__id_>`_. # noqa
Expand Down Expand Up @@ -231,7 +231,7 @@ def get_transaction_designations(self, page_number=1, page_size=50):
def create_interaction(self, **kwargs):
"""
`Args:`
**kwargs:`
**kwargs:
Fields to include, e.g., Channel = "Email".

See the Bloomerang API docs for a full list of `fields <https://bloomerang.co/features/integrations/api/rest-api#/Interactions/post_interaction>`_. # noqa
Expand All @@ -243,7 +243,7 @@ def update_interaction(self, interaction_id, **kwargs):
`Args:`
interaction_id: str or int
Interaction ID to update
**kwargs:`
**kwargs:
Fields to update, e.g., EmailAddress = "[email protected]".

See the Bloomerang API docs for a full list of `fields <https://bloomerang.co/features/integrations/api/rest-api#/Interactions/put_interaction__id_>`_. # noqa
Expand Down
2 changes: 1 addition & 1 deletion parsons/twilio/twilio.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def get_messages(self, to=None, from_=None, date_sent=None, date_sent_before=Non
`Args:`
to: str
Filter to messages only sent to the specified phone number.
from_: str
from\_: str
Filter to messages only sent from the specified phone number.
date_sent: str
Filter to messages only sent on the specified date (ex. ``2019-01-01``).
Expand Down