File tree Expand file tree Collapse file tree 4 files changed +3
-3
lines changed Expand file tree Collapse file tree 4 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
from django .core .exceptions import ImproperlyConfigured
6
6
7
7
from .oauth2_validators import OAuth2Validator
8
- from .backends import OAuthLibCore
8
+ from .oauth2_backends import OAuthLibCore
9
9
from .settings import oauth2_settings
10
10
11
11
Original file line number Diff line number Diff line change 1
1
from rest_framework .authentication import BaseAuthentication
2
2
3
- from ...backends import get_oauthlib_core
3
+ from ...oauth2_backends import get_oauthlib_core
4
4
5
5
6
6
class OAuth2Authentication (BaseAuthentication ):
File renamed without changes.
Original file line number Diff line number Diff line change 5
5
from django .core .exceptions import ImproperlyConfigured
6
6
from django .http import HttpResponseForbidden
7
7
8
- from ..backends import OAuthLibCore
8
+ from ..oauth2_backends import OAuthLibCore
9
9
from ..exceptions import FatalClientError
10
10
from ..settings import oauth2_settings
11
11
You can’t perform that action at this time.
0 commit comments