trivial: remove usage of obsolete python_2_unicode_compatible (#64293)

This commit is contained in:
Frédéric Péters 2022-04-17 11:15:02 +02:00
parent 78fb5ed6b3
commit 033a6a79f8
2 changed files with 0 additions and 5 deletions

View File

@ -25,7 +25,6 @@ import psycopg2
from django.conf import settings
from django.core.cache import cache
from django.utils.encoding import force_bytes, force_text
from django.utils.six import python_2_unicode_compatible
from django.utils.translation import ugettext_lazy as _
from . import schemas
@ -34,7 +33,6 @@ psycopg2.extensions.register_type(psycopg2.extensions.UNICODE)
psycopg2.extensions.register_type(psycopg2.extensions.UNICODEARRAY)
@python_2_unicode_compatible
class DimensionCell(collections.namedtuple('_Cell', ['dimension', 'value', 'value_label'])):
@property
def label(self):
@ -51,7 +49,6 @@ class DimensionCell(collections.namedtuple('_Cell', ['dimension', 'value', 'valu
return force_text(self.label)
@python_2_unicode_compatible
class MeasureCell(collections.namedtuple('_Cell', ['measure', 'value'])):
@property
def label(self):

View File

@ -19,7 +19,6 @@ import json
from django.db import models
from django.http import Http404
from django.utils.six import python_2_unicode_compatible
from django.utils.text import slugify
from django.utils.translation import ugettext_lazy as _
from jsonfield import JSONField
@ -39,7 +38,6 @@ class JSONEncoder(json.JSONEncoder):
return json.JSONEncoder.default(self, obj)
@python_2_unicode_compatible
class Visualization(models.Model):
slug = models.SlugField(verbose_name=_('Identifier'), unique=True)
name = models.TextField(verbose_name=_('name'))