From 7f2d140e030ef4200fbb31abfc2f106dfa00a602 Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Thu, 10 Aug 2023 18:39:07 +0500 Subject: [PATCH 1/3] chore: removing un-used import. --- .../0001_squashed_0016_add_transcript_credentials_model.py | 1 - 1 file changed, 1 deletion(-) diff --git a/edxval/migrations/0001_squashed_0016_add_transcript_credentials_model.py b/edxval/migrations/0001_squashed_0016_add_transcript_credentials_model.py index 8d1d7098..ab21c77e 100644 --- a/edxval/migrations/0001_squashed_0016_add_transcript_credentials_model.py +++ b/edxval/migrations/0001_squashed_0016_add_transcript_credentials_model.py @@ -6,7 +6,6 @@ import django.db.models.deletion import django.utils.timezone import edxval.models -import fernet_fields.fields import model_utils.fields From 30b52cb3937ab53c680aba57d3a7e227309da596 Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Thu, 10 Aug 2023 18:39:33 +0500 Subject: [PATCH 2/3] chore: removing un-used import. --- edxval/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edxval/__init__.py b/edxval/__init__.py index 1af498d1..b2643346 100644 --- a/edxval/__init__.py +++ b/edxval/__init__.py @@ -2,4 +2,4 @@ init """ -__version__ = '2.4.0' +__version__ = '2.4.1' From 811e1b332e0e00cd379d99a2741d2996925e3bf1 Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Thu, 10 Aug 2023 18:57:33 +0500 Subject: [PATCH 3/3] chore: removing un-used import. --- .../0001_squashed_0016_add_transcript_credentials_model.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/edxval/migrations/0001_squashed_0016_add_transcript_credentials_model.py b/edxval/migrations/0001_squashed_0016_add_transcript_credentials_model.py index ab21c77e..2191e559 100644 --- a/edxval/migrations/0001_squashed_0016_add_transcript_credentials_model.py +++ b/edxval/migrations/0001_squashed_0016_add_transcript_credentials_model.py @@ -169,8 +169,6 @@ class Migration(migrations.Migration): ('modified', model_utils.fields.AutoLastModifiedField(default=django.utils.timezone.now, editable=False, verbose_name='modified')), ('org', models.CharField(help_text='This value must match the value of organization in studio/edx-platform.', max_length=50, verbose_name='Organization')), ('provider', models.CharField(choices=[('Custom', 'Custom'), ('3PlayMedia', '3PlayMedia'), ('Cielo24', 'Cielo24')], max_length=50, verbose_name='Transcript provider')), - ('api_key', fernet_fields.fields.EncryptedTextField(max_length=255, verbose_name='API key')), - ('api_secret', fernet_fields.fields.EncryptedTextField(max_length=255, verbose_name='API secret')), ], options={ 'verbose_name_plural': 'Transcript Credentials',