From b9e2236a1a3c348d16f03e3d2d77244364141514 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Thu, 22 Jul 2021 08:28:46 -0400 Subject: [PATCH] Document the exception case --- src/_zkapauthorizer/model.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/_zkapauthorizer/model.py b/src/_zkapauthorizer/model.py index 7c62b8f..4f8b051 100644 --- a/src/_zkapauthorizer/model.py +++ b/src/_zkapauthorizer/model.py @@ -522,6 +522,10 @@ class VoucherStore(object): which have not had their state changed to invalid or spent have been reset. + :raise NotEnoughTokens: If there are fewer than the requested number + of tokens available to be spent. In this case, all tokens remain + available to future calls and do not need to be reset. + :return list[UnblindedTokens]: The removed unblinded tokens. """ if count > _SQLITE3_INTEGER_MAX: -- GitLab