misc: remove unnecessary encoding (#44545)

This commit is contained in:
Frédéric Péters 2020-06-29 12:02:31 +02:00
parent f0676bc5b6
commit 18e522f554
1 changed files with 0 additions and 2 deletions

View File

@ -96,8 +96,6 @@ class WorkCell(object):
def __init__(self, worksheet, value, hint=None):
if value is None:
value = ''
if type(value) is not unicode:
value = unicode(value, 'utf-8')
self.value = value
self.worksheet = worksheet
self.hint = hint