summaryrefslogtreecommitdiff
path: root/tablib/formats/_xlsx.py
diff options
context:
space:
mode:
Diffstat (limited to 'tablib/formats/_xlsx.py')
-rw-r--r--tablib/formats/_xlsx.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tablib/formats/_xlsx.py b/tablib/formats/_xlsx.py
index 816fd37..ebafc4f 100644
--- a/tablib/formats/_xlsx.py
+++ b/tablib/formats/_xlsx.py
@@ -129,7 +129,7 @@ def dset_sheet(dataset, ws, freeze_panes=True):
if freeze_panes:
# Export Freeze only after first Line
ws.freeze_panes = 'A2'
-
+
# bold separators
elif len(row) < dataset.width:
cell.value = unicode('%s' % col, errors='ignore')
@@ -145,5 +145,3 @@ def dset_sheet(dataset, ws, freeze_panes=True):
cell.value = unicode('%s' % col, errors='ignore')
except TypeError:
cell.value = unicode(col)
-
-