Skip to content

Commit fd9d10b

Browse files
committed
Sort imports
Signed-off-by: Ivan Kanakarakis <[email protected]>
1 parent e7c585c commit fd9d10b

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/satosa/micro_services/ldap_attribute_store.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,19 @@
55
the record and assert them to the receiving SP.
66
"""
77

8-
from satosa.micro_services.base import ResponseMicroService
9-
from satosa.logging_util import satosa_logging
10-
from satosa.response import Redirect
11-
from satosa.exception import SATOSAError
12-
138
import copy
149
import logging
15-
import ldap3
1610
import urllib
1711

12+
import ldap3
1813
from ldap3.core.exceptions import LDAPException
1914

15+
from satosa.exception import SATOSAError
16+
from satosa.logging_util import satosa_logging
17+
from satosa.micro_services.base import ResponseMicroService
18+
from satosa.response import Redirect
19+
20+
2021
logger = logging.getLogger(__name__)
2122

2223
KEY_FOUND_LDAP_RECORD = 'ldap_attribute_store_found_record'

0 commit comments

Comments
 (0)