From 2d2282ada83d73b87e42ce7e587292fef889fd86 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 27 Jan 2016 12:31:16 -0800 Subject: [PATCH] Add PEP-484 type annotations to confirmation/. --- confirmation/settings.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/confirmation/settings.py b/confirmation/settings.py index a5a9a09204..e9bdadc6ea 100644 --- a/confirmation/settings.py +++ b/confirmation/settings.py @@ -2,9 +2,10 @@ # Copyright: (c) 2008, Jarek Zgoda +from typing import * + __revision__ = '$Id: settings.py 12 2008-11-23 19:38:52Z jarek.zgoda $' STATUS_ACTIVE = 1 -STATUS_FIELDS = { -} +STATUS_FIELDS = {} # type: Dict[Any, Any]