I'm hitting an error when running makemigrations, and it seems to be related to my INSTALLED_APPS list.
Here is a screenshot of my project:

I've also attempted to use the following strings in the INSTALLED_APPS list, but I got the same error:
'.api.apps.ApiConfig',
'.pizzas.apps.PizzasConfig',
The classes ApiConfig and PizzaConfig both follow this structure in their respective apps.py files:
from django.apps import AppConfig
class PizzasConfig(AppConfig):
name = 'pizzas'
Does anyone have any ideas as to what I could be missing here?

This happened to me when I had created an application with name
t. However, it resolved when I used configs for registering it inside installed apps.I believe you have a typo in the config names. An extra dot
.at the beginning.Try this one.