File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ def __init__(self,
58
58
confirm : bool = False ,
59
59
prompt : bool = False ,
60
60
credentialOverrides : list [str ] = None ,
61
+ credentialContexts : list [str ] = None ,
61
62
location : str = "" ,
62
63
env : list [str ] = None ,
63
64
forceSequential : bool = False ,
@@ -76,6 +77,7 @@ def __init__(self,
76
77
self .confirm = confirm
77
78
self .prompt = prompt
78
79
self .credentialOverrides = credentialOverrides
80
+ self .credentialContexts = credentialContexts
79
81
self .location = location
80
82
self .env = env
81
83
self .forceSequential = forceSequential
@@ -92,6 +94,7 @@ def merge_global_opts(self, other: GlobalOptions) -> Self:
92
94
cp .confirm = self .confirm
93
95
cp .prompt = self .prompt
94
96
cp .credentialOverrides = self .credentialOverrides
97
+ cp .credentialContexts = self .credentialContexts
95
98
cp .location = self .location
96
99
cp .env = self .env
97
100
cp .forceSequential = self .forceSequential
You can’t perform that action at this time.
0 commit comments