Skip to content

Commit

Permalink
added kwargs in build_authorization_url (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelvignes authored Oct 20, 2020
1 parent 1df39b9 commit 3a5380c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def get_static_file_paths():

setup(
name='toucan_connectors',
version='0.43.2',
version='0.43.3',
description='Toucan Toco Connectors',
long_description=(HERE / 'README.md').read_text(encoding='utf-8'),
long_description_content_type='text/markdown',
Expand Down
4 changes: 2 additions & 2 deletions toucan_connectors/aircall/aircall_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ def __init__(self, **kwargs):
),
)

def build_authorization_url(self):
return self.__dict__['_oauth2_connector'].build_authorization_url()
def build_authorization_url(self, **kwargs):
return self.__dict__['_oauth2_connector'].build_authorization_url(**kwargs)

def retrieve_tokens(self, authorization_response: str):
"""
Expand Down

0 comments on commit 3a5380c

Please sign in to comment.