1👍
✅
Well… you’ve configured the flake8 linter to be run on your code.
The linter has been configured to consider lines longer than 79 characters (the default) to be too long, and your settings file contains such lines:
./app/settings.py:23:80: E501 line too long (81 > 79 characters)
./app/settings.py:89:80: E501 line too long (91 > 79 characters)
./app/settings.py:92:80: E501 line too long (81 > 79 characters)
./app/settings.py:95:80: E501 line too long (82 > 79 characters)
./app/settings.py:98:80: E501 line too long (83 > 79 characters)
Shorten those lines, or configure flake8 to allow longer lines.
👤AKX
Source:stackexchange.com