Skip to content

Commit 7d152a4

Browse files
committed
fix swappable dependency
1 parent 4a4693b commit 7d152a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

oauth2_provider/migrations/0012_add_token_checksum.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
import oauth2_provider.models
44
from django.db import migrations, models
5-
5+
from oauth2_provider.settings import oauth2_settings
66

77
class Migration(migrations.Migration):
88
dependencies = [
99
("oauth2_provider", "0011_refreshtoken_token_family"),
10-
migrations.swappable_dependency(settings.OAUTH2_PROVIDER_ACCESS_TOKEN_MODEL),
10+
migrations.swappable_dependency(oauth2_settings.OAUTH2_PROVIDER_ACCESS_TOKEN_MODEL),
1111
]
1212

1313
operations = [

0 commit comments

Comments
 (0)