Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
felipao-mx committed Mar 28, 2019
1 parent 5ae21ea commit 219bb1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions botmaker/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def post(self, endpoint: str, data: dict, **kwargs) -> dict:
return self.request('post', endpoint, data, **kwargs)

def request(
self, method: str, endpoint: str, data: dict, **kwargs
self, method: str, endpoint: str, data: dict, **kwargs
) -> dict:
url = self.BASE_URL + endpoint
response = requests.request(
Expand All @@ -46,7 +46,7 @@ def _check_response(response):
response.raise_for_status()

def check_whatsapp_contacts(
self, channel: str, phone_numbers: list
self, channel: str, phone_numbers: list
) -> dict:
"""
Based on
Expand Down

0 comments on commit 219bb1c

Please sign in to comment.