From 97c9a75ed390f106f9b000325e0fdc3f80157d11 Mon Sep 17 00:00:00 2001 From: Julian Lobbes Date: Sun, 21 May 2023 03:20:48 +0200 Subject: [PATCH] fix(backend): docstring typo --- backend/todo/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/todo/exceptions.py b/backend/todo/exceptions.py index 0d10b2c..40b521c 100644 --- a/backend/todo/exceptions.py +++ b/backend/todo/exceptions.py @@ -8,7 +8,7 @@ class NotFoundException(Exception): class DataIntegrityException(Exception): - """Raised when a resource was unexpectedly not found.""" + """Raised to prevent a semantically invalid database operation.""" pass