You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is_default: bool=typer.Option(False, "--is-default", "-i", help="If this is the default configuration"),
179
+
file_input: Annotated[typer.FileText, typer.Option("--file", "-f", help="JSON file containing configurations, if command line options not used; can be passed as stdin with -, example: -f-")] =None,
180
+
):
181
+
"""
182
+
Add a single personal configuration
183
+
"""
184
+
185
+
client=ctx.obj["client"]
186
+
187
+
iffile_input:
188
+
ifaliasoraccess_tokenoris_defaultorhost:
189
+
raisetyper.BadParameter("When providing a configuration file, do not specify any other attributes")
0 commit comments