def listar_restaurantes():
exibir_subtitulo("Listando Restaurantes")
for restaurante in restaurantes:
nome_restaurante = restaurante['nome']
categoria = restaurante['categoria']
ativo = restaurante['ativo']
print(f"- {nome_restaurante} | {categoria} | {ativo}")
voltar_ao_menu_principal()
def alternar_estado_restaurante():
exibir_subtitulo("Alterando estado do Restaurante")
nome_restaurante = input("Digite o nome do restaurante que deseja alterar o estado: ")
restaurante_encontrado = False
def escolher_opcoes():
try:
opcao_escolhida = int(input("Escolha uma opção: "))
print(f"Você escolheu a opção: {opcao_escolhida}")
if opcao_escolhida == 1:
cadastrar_novo_restaurante()
elif opcao_escolhida == 2:
listar_restaurantes()
elif opcao_escolhida == 3:
alternar_estado_restaurante()
elif opcao_escolhida == 4:
finalizar_app()
else:
opcao_invalida()
except:
opcao_invalida()
Não consegui encontrar onde está o erro ;(