From 076ab4437e66440b2a5567eea36df0558537228d Mon Sep 17 00:00:00 2001 From: Randi Griffin Date: Wed, 30 Sep 2020 15:37:24 -0400 Subject: [PATCH 1/2] rm extraneous backticks --- parsons/bloomerang/bloomerang.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/parsons/bloomerang/bloomerang.py b/parsons/bloomerang/bloomerang.py index 2ff5226be7..a66c963951 100644 --- a/parsons/bloomerang/bloomerang.py +++ b/parsons/bloomerang/bloomerang.py @@ -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 `_. # noqa @@ -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 `_. # noqa @@ -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 `_. # noqa @@ -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 `_. # noqa @@ -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 `_. # noqa @@ -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 = "user@example.com". See the Bloomerang API docs for a full list of `fields `_. # noqa From dcf6161fcc88a98ad00ed5e422b4d40c5ad5288f Mon Sep 17 00:00:00 2001 From: Randi Griffin Date: Wed, 30 Sep 2020 15:38:48 -0400 Subject: [PATCH 2/2] escape underscore to prevent hyperlink formatting https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#escaping-mechanism --- parsons/twilio/twilio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsons/twilio/twilio.py b/parsons/twilio/twilio.py index 38e82888fc..70fc85042e 100644 --- a/parsons/twilio/twilio.py +++ b/parsons/twilio/twilio.py @@ -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``).