We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61ebe2a commit 5fbdfb1Copy full SHA for 5fbdfb1
phasetwo/configuration.py
@@ -82,7 +82,7 @@ class Configuration(object):
82
_default = None
83
84
def __init__(
85
- self,
+ self, access_token=None,
86
host=None,
87
discard_unknown_keys=False,
88
disabled_client_side_validations="",
@@ -93,6 +93,7 @@ def __init__(
93
):
94
"""Constructor
95
"""
96
+ self.access_token = access_token
97
self._base_path = "https://app.phasetwo.io/auth/realms" if host is None else host
98
"""Default Base url
99
0 commit comments