Skip to content

Commit

Permalink
Fix ERR_GENERATE_LEN value: updated minimum length from 22 to 16 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
Polyakiv-Andrey authored Sep 16, 2024
1 parent cf7ca1f commit dbebbe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion duo_universal/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
ERR_REDIRECT_URI = 'No redirect uri'
ERR_CODE = 'Missing authorization code'
ERR_UNKNOWN = 'An unknown error has occurred.'
ERR_GENERATE_LEN = 'Length needs to be at least 22'
ERR_GENERATE_LEN = 'Length needs to be at least 16'
ERR_STATE_LEN = ('State must be at least {MIN} characters long and no longer than {MAX} characters').format(
MIN=MINIMUM_STATE_LENGTH,
MAX=MAXIMUM_STATE_LENGTH
Expand Down

0 comments on commit dbebbe6

Please sign in to comment.