Don't commit breakpoints. This will pause execution in prod and break the app.
If our GitHub code review bot spots this issue in your pull request it gives this advice:
1 | + | class HomeView(View): | |
2 | + | def get(self, request): | |
3 | + | import pdb; pdb.set_trace() |
Don't commit breakpoints. This will pause execution in prod and break the app.
Read more- | import pdb; pdb.set_trace() |
4 | + | ... |