Skip to content

Commit

Permalink
remove useless type ignores
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Leclerc <[email protected]>
  • Loading branch information
sylvlecl committed Sep 4, 2024
1 parent e7dc28c commit 6a20115
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions antarest/login/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
from antarest.core.config import Config
from antarest.core.interfaces.eventbus import DummyEventBusService, IEventBus
from antarest.core.utils.fastapi_sqlalchemy import db
from antarest.fastapi_jwt_auth import AuthJWT # type: ignore
from antarest.fastapi_jwt_auth.exceptions import AuthJWTException # type: ignore
from antarest.fastapi_jwt_auth import AuthJWT
from antarest.fastapi_jwt_auth.exceptions import AuthJWTException
from antarest.login.ldap import LdapService
from antarest.login.repository import BotRepository, GroupRepository, RoleRepository, UserLdapRepository, UserRepository
from antarest.login.service import LoginService
Expand Down
1 change: 0 additions & 1 deletion antarest/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
from antarest.core.tasks.service import ITaskService
from antarest.core.utils.utils import new_redis_instance
from antarest.eventbus.main import build_eventbus
from antarest.fastapi_jwt_auth import AuthJWT # type: ignore
from antarest.launcher.main import build_launcher
from antarest.login.main import build_login
from antarest.login.service import LoginService
Expand Down

0 comments on commit 6a20115

Please sign in to comment.