~roadmr/canonical-identity-provider/fix-deprecation-warnings-1

« back to all changes in this revision

Viewing changes to src/identityprovider/models/openidmodels.py

  • Committer: Tom Wardill
  • Date: 2018-02-14 14:05:59 UTC
  • mfrom: (1602 work)
  • mto: (1597.1.44 django-1.10)
  • mto: This revision was merged to the branch mainline in revision 1603.
  • Revision ID: tom.wardill@canonical.com-20180214140559-ow5txzwy46nopws2
Merge flake8 changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
import json
9
9
import time
10
10
 
11
 
from openid.association import Association
12
 
 
13
11
import openid.store
14
12
import openid.store.nonce
15
 
 
16
13
from django.conf import settings
17
14
from django.core.cache import cache
18
15
from django.db import models
19
16
from django.utils.timezone import now
20
17
from django.utils.translation import ugettext_lazy as _
 
18
from openid.association import Association
21
19
from openid.store.interface import OpenIDStore
22
20
 
23
21
from identityprovider.models.account import Account