Skip to content

Commit

Permalink
Issue ref delta-io#269: OAuth 2.0 Credential Format for Delta Sharing…
Browse files Browse the repository at this point in the history
… Python Client Pull Request

Signed-off-by: Dima Alberg <[email protected]>
  • Loading branch information
dialberg committed May 15, 2023
1 parent 372f0a3 commit b1bafe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/delta_sharing/rest_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def __init__(self, profile: DeltaSharingProfile, num_retries=10):
self._sleeper = lambda sleep_ms: time.sleep(sleep_ms / 1000)
self.auth_session(profile)

def auth_session(self, profile) -> requests.Session:
def auth_session(self, profile):
self._session = requests.Session()
self.auth_broker(profile)
if urlparse(profile.endpoint).hostname == "localhost":
Expand Down

0 comments on commit b1bafe4

Please sign in to comment.