Skip to content

Commit

Permalink
fix isort
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBelthle committed Aug 30, 2024
1 parent 1669f99 commit 1794d17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/login/test_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import pytest
from fastapi import FastAPI
from fastapi_jwt_auth import AuthJWT
from starlette.testclient import TestClient

from antarest.core.config import Config, SecurityConfig
Expand All @@ -41,7 +42,6 @@
UserInfo,
)
from antarest.main import JwtSettings
from fastapi_jwt_auth import AuthJWT

PARAMS = RequestParameters(
user=JWTUser(
Expand Down
2 changes: 1 addition & 1 deletion tests/matrixstore/test_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@

import pytest
from fastapi import FastAPI
from fastapi_jwt_auth import AuthJWT
from starlette.testclient import TestClient

from antarest.core.config import Config, SecurityConfig
from antarest.main import JwtSettings
from antarest.matrixstore.main import build_matrix_service
from antarest.matrixstore.model import MatrixDTO, MatrixInfoDTO
from fastapi_jwt_auth import AuthJWT
from tests.login.test_web import create_auth_token


Expand Down

0 comments on commit 1794d17

Please sign in to comment.