Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrozdanic committed Jan 12, 2025
1 parent d8bfcf9 commit 5d77edf
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion rest_framework_simplejwt/authentication.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Optional, Set, Tuple, TypeVar
from typing import Optional, TypeVar

from django.contrib.auth import get_user_model
from django.contrib.auth.models import AbstractBaseUser
Expand Down
2 changes: 1 addition & 1 deletion rest_framework_simplejwt/backends.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
from collections.abc import Iterable
from datetime import timedelta
from typing import Any, Dict, Optional, Type, Union
from typing import Any, Optional, Union

import jwt
from django.utils.translation import gettext_lazy as _
Expand Down
2 changes: 1 addition & 1 deletion rest_framework_simplejwt/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, Dict, Optional, Union
from typing import Any, Optional, Union

from django.utils.translation import gettext_lazy as _
from rest_framework import exceptions, status
Expand Down
2 changes: 1 addition & 1 deletion rest_framework_simplejwt/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import TYPE_CHECKING, Any, List, Optional, Union
from typing import TYPE_CHECKING, Any, Optional, Union

from django.contrib.auth import models as auth_models
from django.db.models.manager import EmptyManager
Expand Down
2 changes: 1 addition & 1 deletion rest_framework_simplejwt/serializers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, Dict, Optional, Type, TypeVar
from typing import Any, Optional, TypeVar

from django.conf import settings
from django.contrib.auth import authenticate, get_user_model
Expand Down
2 changes: 1 addition & 1 deletion rest_framework_simplejwt/settings.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from datetime import timedelta
from typing import Any, Dict
from typing import Any

from django.conf import settings
from django.test.signals import setting_changed
Expand Down
2 changes: 1 addition & 1 deletion rest_framework_simplejwt/token_blacklist/admin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from datetime import datetime
from typing import Any, List, Optional, TypeVar
from typing import Any, Optional, TypeVar

from django.contrib import admin
from django.contrib.auth.models import AbstractBaseUser
Expand Down

0 comments on commit 5d77edf

Please sign in to comment.