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 f81e40a commit fc02ad3Copy full SHA for fc02ad3
contentctl/contentctl.py
@@ -233,7 +233,7 @@ def main():
233
"test_servers": test_servers.model_construct(**t.__dict__),
234
"release_notes": release_notes.model_construct(**config_obj),
235
"deploy_acs": deploy_acs.model_construct(**t.__dict__),
236
- "recognize": tyro.conf.Subcommand(),
+ "recognize": tyro.conf.subcommand(),
237
}
238
)
239
@@ -264,7 +264,7 @@ def main():
264
deploy_acs_func(updated_config)
265
elif type(config) is test or type(config) is test_servers:
266
test_common_func(config)
267
- elif type(config) is tyro.conf.Subcommand:
+ elif type(config) is tyro.conf.subcommand:
268
recognize_func()
269
else:
270
raise Exception(f"Unknown command line type '{type(config).__name__}'")
0 commit comments