diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 529161c..51c838e 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -8,7 +8,7 @@ import uuid from django.utils import timezone, formats from datetime import datetime, timedelta from .. import config_local -from ..utils.crypto import decrypt_aes_gcm +from ..utils.cryptography import decrypt_aes_gcm class TeamSortingType(models.IntegerChoices): RANK = 1, 'Rank' diff --git a/tournaments/utils/crypto.py b/tournaments/utils/cryptography.py similarity index 100% rename from tournaments/utils/crypto.py rename to tournaments/utils/cryptography.py