diff --git a/README.md b/README.md index c005aa0..58e190e 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,6 @@ def create_user(): You can find the full documentation at [Read the Docs](https://flask-utils.readthedocs.io/en/latest/) - ## Testing Install the requirements @@ -79,7 +78,9 @@ tox -p - [ ] Move todo-list to GitHub issues - [ ] Badges - [ ] Automatic build/deployment (https://github.com/pypa/cibuildwheel) +- [ ] [cibuildwheel](https://github.com/pypa/cibuildwheel) - [ ] https://github.com/PyCQA/flake8-bugbear +- [ ] [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) - [ ] Versioning of docs in Read the Docs - [ ] Refactor documentation to avoid full links in docs (have `BadRequestError` instead of `flask_utils.errors.BadRequestError`) - [ ] Add usage examples to documentation in the Usage section diff --git a/flask_utils/errors/notfound.py b/flask_utils/errors/notfound.py index 0985163..3defafc 100644 --- a/flask_utils/errors/notfound.py +++ b/flask_utils/errors/notfound.py @@ -4,7 +4,7 @@ class NotFoundError(_BaseFlaskException): """This is the NotFoundError exception class. - When raised, it will return 400 status code with the message and solution provided. + When raised, it will return 404 status code with the message and solution provided. :param msg: The message to be displayed in the error. :param solution: The solution to the error.