This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime, timedelta | |
from time import mktime | |
from django.conf import settings | |
from django.db import models | |
from django.utils.translation import ugettext_lazy as _ | |
from django.contrib.auth.models import AbstractBaseUser, UserManager, BaseUserManager | |
from lazy import lazy | |
from sanction.client import Client as SanctionClient |