[Django]-Finding unused Django code to remove

11👍

You can run the development server under coverage if you use the –noreload switch:

coverage run ./manage.py runserver --noreload

9👍

pylint is great tool for static code analysis (among others things it will detect unused imports, variables or arguments).

👤miku

Leave a comment