Skip to content

Commit

Permalink
fix - remove await
Browse files Browse the repository at this point in the history
  • Loading branch information
lohanspies committed Apr 10, 2021
1 parent fc5458b commit d1a0345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aries_cloudcontroller/aries_controller_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __post_init__(self):
if self.api_key:
self.headers.update({"X-API-Key": self.api_key})

self.client_session: ClientSession = await ClientSession(
self.client_session: ClientSession = ClientSession(
headers=self.headers)

# Instantiate controllers
Expand Down

0 comments on commit d1a0345

Please sign in to comment.