Skip to content

Commit

Permalink
Merge pull request #46 from SerhiyRomanov/fix_missed_import_callable
Browse files Browse the repository at this point in the history
Fix missed import_callable
  • Loading branch information
iMerica committed Apr 18, 2020
2 parents 5d2e83c + 64e07ec commit 9e04918
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dj_rest_auth/app_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
'PASSWORD_RESET_SERIALIZER', DefaultPasswordResetSerializer
))

PasswordResetConfirmSerializer = serializers.get(
PasswordResetConfirmSerializer = import_callable(serializers.get(
'PASSWORD_RESET_CONFIRM_SERIALIZER', DefaultPasswordResetConfirmSerializer
)
))

PasswordChangeSerializer = import_callable(serializers.get('PASSWORD_CHANGE_SERIALIZER', DefaultPasswordChangeSerializer))

Expand Down

0 comments on commit 9e04918

Please sign in to comment.