Skip to content

Commit ca64f85

Browse files
committed
Fix imports order
1 parent 7390dbb commit ca64f85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/decorators/test_security.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
import pytest
55
import requests
6-
from connexion.exceptions import (OAuthProblem, OAuthResponseProblem,
7-
OAuthScopeProblem, BadRequestProblem,
8-
ConnexionException)
6+
from connexion.exceptions import (BadRequestProblem, ConnexionException,
7+
OAuthProblem, OAuthResponseProblem,
8+
OAuthScopeProblem)
99

1010

1111
def test_get_tokeninfo_url(monkeypatch, security_handler_factory):

0 commit comments

Comments
 (0)