diff --git a/backend/app/gateway/auth/repositories/base.py b/backend/app/gateway/auth/repositories/base.py index 49e61de40..b5baa02c7 100644 --- a/backend/app/gateway/auth/repositories/base.py +++ b/backend/app/gateway/auth/repositories/base.py @@ -76,7 +76,7 @@ class UserRepository(ABC): a hard failure (not a no-op) so callers cannot mistake a concurrent-delete race for a successful update. """ - ... + raise NotImplementedError @abstractmethod async def count_users(self) -> int: