I am getting a unresolved import "Blog" in visual studio code. It happened all of a sudden, I am using a venv through conda, I haven't changed anything with the venv, everything is still working, but it's really annoying to have it. As I said, I haven't changed anything in the project that could potentially create this problem intentionally.
from django.contrib import admin
from django.urls import path, include
from Blog import views
urlpatterns = [
path('admin/', admin.site.urls),
path("blog/", include("Blog.urls")),
path("index/", views.index.as_view(), name="index"),
path("", include("django.contrib.auth.urls")),
path("signup/", views.SignUp.as_view(), name="SignUp"),
path("accounts/", include("django.contrib.auth.urls")),
]