Skip to content

Commit

Permalink
STY: sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dmgav authored and danielballan committed May 10, 2022
1 parent 0a1dc7e commit 7d9e2ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions tiled/_tests/test_authenticators.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import asyncio

import pytest

from ..authenticators import LDAPAuthenticator
Expand Down
4 changes: 2 additions & 2 deletions tiled/authenticators.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import ldap3
from ldap3.utils.conv import escape_filter_chars
import logging
import re
import secrets

import ldap3
from fastapi import APIRouter, Request
from jose import JWTError, jwk, jwt
from ldap3.utils.conv import escape_filter_chars
from starlette.responses import RedirectResponse

from .server.authentication import Mode
Expand Down

0 comments on commit 7d9e2ce

Please sign in to comment.