Add PEP-484 type annotations to confirmation/.

This commit is contained in:
Tim Abbott 2016-01-27 12:31:16 -08:00
parent b8c82d5b43
commit 2d2282ada8
1 changed files with 3 additions and 2 deletions

View File

@ -2,9 +2,10 @@
# Copyright: (c) 2008, Jarek Zgoda <jarek.zgoda@gmail.com>
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]