Есть такой фрагмент кода для django проекта:
from django.conf import settings
billing_config = settings.BILLING
token = billing_config['Yandex']['token']
При проверке mypy получаю ошибку для строки с token:
error: Value of type "_VT" is not indexable
error: Invalid index type "str" for "dict"; expected type "_KT"