Segui todos os passos da Aula, mas no momento de verificar se a url receitas apareceria no browser como página principal estou recebendo o erro abaixo:
raise ImproperlyConfigured(msg.format(name=self.urlconf_name)) from e django.core.exceptions.ImproperlyConfigured: The included URLconf '<module 'receitas.urls' from 'C:\Users\victo\Projetos\python\django\receitas\urls.py'>' does not appear to have any patterns in it. If you see the 'urlpatterns' variable with valid patterns in the file then the issue is probably caused by a circular import.
mas meu receitas/urls.py parece estar de acordo:
from django.urls import URLPattern, path
from . import views
URLPatterns = [ path('',views.index,name='home') ]
Alguém saberia me auxiliar?