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

« back to all changes in this revision

Viewing changes to src/identityprovider/widgets.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:
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
4
from itertools import chain
 
5
 
 
6
from django.conf import settings
5
7
from django.forms.widgets import (
6
8
    CheckboxSelectMultiple,
7
9
    Select,
8
10
    TextInput,
9
11
    Widget,
10
12
)
11
 
from django.conf import settings
12
13
from django.utils.translation import ugettext_lazy as _
13
14
 
14
15
from webui.utils import mark_safe_lazy