I've been working on a django project with no issues. I've pulled updated code from the remote repository and now if i do python manage.py runserver in cmd, i keep getting error
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
D:\some_project\someapp\schemes\models.py changed, reloading.
Watching for file changes with StatReloader
Performing system checks...
then
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
D:\some_project\someapp\schemes\views.py changed, reloading.
Watching for file changes with StatReloader
Performing system checks...
it keeps looping through all the files and all the apps that have in my django project.
it works if i try python manage.py runserver --noreload however, i'm curious as to what lead to the issue in the first place.