From 719dbf83ac5f6359f82138af28432d2a1891d989 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Wed, 20 Nov 2019 14:51:34 -0500
Subject: [PATCH] ``voucher`` is not a cromulent type

---
 src/_zkapauthorizer/controller.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/_zkapauthorizer/controller.py b/src/_zkapauthorizer/controller.py
index df38a6a..42e7784 100644
--- a/src/_zkapauthorizer/controller.py
+++ b/src/_zkapauthorizer/controller.py
@@ -494,14 +494,14 @@ class PaymentController(object):
          the voucher.  The data store marks the voucher as redeemed and stores
          the unblinded tokens for use by the storage client.
 
-    :ivar dict[voucher, datetime] _active: A mapping from voucher identifiers
+    :ivar dict[unicode, datetime] _active: A mapping from voucher identifiers
         which currently have redemption attempts in progress to timestamps
         when the attempt began.
 
-    :ivar dict[voucher, datetime] _error: A mapping from voucher identifiers
+    :ivar dict[unicode, datetime] _error: A mapping from voucher identifiers
         which have recently failed with an unrecognized, transient error.
 
-    :ivar dict[voucher, datetime] _unpaid: A mapping from voucher identifiers
+    :ivar dict[unicode, datetime] _unpaid: A mapping from voucher identifiers
         which have recently failed a redemption attempt due to an unpaid
         response from the redemption server to timestamps when the failure was
         observed.
-- 
GitLab