Skip to content

Commit 5fbdfb1

Browse files
committed
added back access_token
1 parent 61ebe2a commit 5fbdfb1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

phasetwo/configuration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class Configuration(object):
8282
_default = None
8383

8484
def __init__(
85-
self,
85+
self, access_token=None,
8686
host=None,
8787
discard_unknown_keys=False,
8888
disabled_client_side_validations="",
@@ -93,6 +93,7 @@ def __init__(
9393
):
9494
"""Constructor
9595
"""
96+
self.access_token = access_token
9697
self._base_path = "https://app.phasetwo.io/auth/realms" if host is None else host
9798
"""Default Base url
9899
"""

0 commit comments

Comments
 (0)