Olá, pessoal. Tudo jóia?
Estou com problemas nesta linha do código:
def listar_restaurantes():
print(f'{'Nome do restaurante'.ljust(25)} | {'Categoria'.ljust(25)} | {'Status'}')
for restaurante in Restaurante.restaurantes:
print(f'{restaurante.nome.ljust(25)} | {restaurante.categoria.ljust(25)} | {restaurante.ativo}')
Na segunda linha aparece para mim o seguinte erro:
Strings nested within an f-string cannot use the same quote character as the f-string prior to Python 3.12Pylance
O que será que pode ser?
Valeeu!