From af9ec9f6307cd9dff14a9d5002823cfcb48b171d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedek=20D=C3=A9v=C3=A9nyi?= Date: Sat, 20 Jan 2024 12:40:39 +0100 Subject: [PATCH] Update cozy/model/settings.py Co-authored-by: Naglis Jonaitis <827324+naglis@users.noreply.github.com> --- cozy/model/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cozy/model/settings.py b/cozy/model/settings.py index ff23a297..1739530e 100644 --- a/cozy/model/settings.py +++ b/cozy/model/settings.py @@ -51,7 +51,7 @@ def default_location(self) -> Storage | NoReturn: for location in self.storage_locations: if location.default: return location - assert False, "this should never happen" + raise AssertionError("This should never happen") @property def storage_locations(self) -> list[Storage]: