From 82ef28b43fe11f87f8e0fc058e95b07e43d41ed6 Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Thu, 29 Jul 2021 18:24:39 +0500 Subject: [PATCH] chore: Django3 has removed python_2_unicode_compatible. Execute the codemodes. --- openedx/features/announcements/models.py | 2 -- openedx/features/content_type_gating/models.py | 3 +-- openedx/features/course_duration_limits/models.py | 3 +-- openedx/features/discounts/models.py | 4 +--- 4 files changed, 3 insertions(+), 9 deletions(-) diff --git a/openedx/features/announcements/models.py b/openedx/features/announcements/models.py index 71aab7963a..cb202ce521 100644 --- a/openedx/features/announcements/models.py +++ b/openedx/features/announcements/models.py @@ -4,10 +4,8 @@ Models for Announcements from django.db import models -from django.utils.encoding import python_2_unicode_compatible -@python_2_unicode_compatible class Announcement(models.Model): """Site-wide announcements to be displayed on the dashboard""" class Meta: diff --git a/openedx/features/content_type_gating/models.py b/openedx/features/content_type_gating/models.py index 726786e23c..1dde8b9348 100644 --- a/openedx/features/content_type_gating/models.py +++ b/openedx/features/content_type_gating/models.py @@ -5,14 +5,13 @@ Content Type Gating Configuration Models from django.core.exceptions import ValidationError from django.db import models from django.utils import timezone -from django.utils.encoding import python_2_unicode_compatible + from django.utils.translation import ugettext_lazy as _ from openedx.core.djangoapps.config_model_utils.models import StackedConfigurationModel from openedx.features.content_type_gating.helpers import correct_modes_for_fbe, enrollment_date_for_fbe -@python_2_unicode_compatible class ContentTypeGatingConfig(StackedConfigurationModel): """ A ConfigurationModel used to manage configuration for Content Type Gating (Feature Based Enrollments). diff --git a/openedx/features/course_duration_limits/models.py b/openedx/features/course_duration_limits/models.py index 70a46031d6..fe1d0cb589 100644 --- a/openedx/features/course_duration_limits/models.py +++ b/openedx/features/course_duration_limits/models.py @@ -5,14 +5,13 @@ Course Duration Limit Configuration Models from django.core.exceptions import ValidationError from django.db import models from django.utils import timezone -from django.utils.encoding import python_2_unicode_compatible + from django.utils.translation import ugettext_lazy as _ from openedx.core.djangoapps.config_model_utils.models import StackedConfigurationModel from openedx.features.content_type_gating.helpers import correct_modes_for_fbe, enrollment_date_for_fbe -@python_2_unicode_compatible class CourseDurationLimitConfig(StackedConfigurationModel): """ Configuration to manage the Course Duration Limit facility. diff --git a/openedx/features/discounts/models.py b/openedx/features/discounts/models.py index f7a93b711b..bcb394e720 100644 --- a/openedx/features/discounts/models.py +++ b/openedx/features/discounts/models.py @@ -6,13 +6,12 @@ DiscountRestrictionConfig Models from django.db import models -from django.utils.encoding import python_2_unicode_compatible + from django.utils.translation import ugettext_lazy as _ from openedx.core.djangoapps.config_model_utils.models import StackedConfigurationModel -@python_2_unicode_compatible class DiscountRestrictionConfig(StackedConfigurationModel): """ A ConfigurationModel used to manage restrictons for lms-controlled discounts @@ -41,7 +40,6 @@ class DiscountRestrictionConfig(StackedConfigurationModel): ) -@python_2_unicode_compatible class DiscountPercentageConfig(StackedConfigurationModel): """ A ConfigurationModel to configure the discount percentage for the first purchase discount