File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff 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/realms" if host is None else host
9798 """Default Base url
9899 """
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ certifi >= 14.5.14
22frozendict ~= 2.3.4
33python-dateutil ~= 2.7.0
44setuptools >= 21.0.0
5- typing_extensions ~ = 4.3 .0
5+ typing_extensions > = 4.5 .0
66urllib3 ~= 1.26.7
Original file line number Diff line number Diff line change 1212from setuptools import setup , find_packages # noqa: H301
1313
1414NAME = "phasetwo-sdk"
15- VERSION = "0.1.1 "
15+ VERSION = "0.2.0 "
1616# To install the library, run the following
1717#
1818# python setup.py install
2525 "frozendict ~= 2.3.4" ,
2626 "python-dateutil ~= 2.7.0" ,
2727 "setuptools >= 21.0.0" ,
28- "typing_extensions ~ = 4.3 .0" ,
28+ "typing_extensions > = 4.5 .0" ,
2929 "urllib3 ~= 1.26.7" ,
3030]
3131
You can’t perform that action at this time.
0 commit comments