From c925197fbcd26b2c0e9f4ebfe94b6fc5afaf49f1 Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 30 May 2024 09:21:52 +0200 Subject: [PATCH] rename crypto.py in cryptography.py --- tournaments/models/tournament.py | 2 +- tournaments/utils/{crypto.py => cryptography.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tournaments/utils/{crypto.py => cryptography.py} (100%) 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