Don't ask for Api.inspect in stack build

This commit is contained in:
Ashwin Bharambe 2024-10-02 21:10:56 -07:00
parent 19ce6bf009
commit 988a9cada3

View file

@ -253,6 +253,8 @@ class StackBuild(Subcommand):
for api in Api: for api in Api:
if api in routing_table_apis: if api in routing_table_apis:
continue continue
if api == Api.inspect:
continue
providers_for_api = all_providers[api] providers_for_api = all_providers[api]