pyfastexcel 0.1.2__tar.gz → 0.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/PKG-INFO +1 -1
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/pyfastexcel.dll +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/pyfastexcel.so +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/writer.py +3 -5
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/PKG-INFO +1 -1
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/setup.cfg +1 -1
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/LICENSE +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/README.md +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/__init__.py +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/_typing.py +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/driver.py +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/logformatter.py +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/style.py +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/utils.py +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/workbook.py +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/worksheet.py +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/SOURCES.txt +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/dependency_links.txt +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/not-zip-safe +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/requires.txt +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/top_level.txt +0 -0
- {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/setup.py +0 -0
|
Binary file
|
|
Binary file
|
|
@@ -133,14 +133,12 @@ class StreamWriter(Workbook):
|
|
|
133
133
|
elif isinstance(style, str):
|
|
134
134
|
style = self._handle_string_style(style, kwargs)
|
|
135
135
|
|
|
136
|
+
value = tuple((validate_and_format_value(x, set_default_style=False), style) for x in value)
|
|
137
|
+
|
|
136
138
|
if create_row:
|
|
137
|
-
value = tuple(
|
|
138
|
-
(validate_and_format_value(x, set_default_style=False), style) for x in value
|
|
139
|
-
)
|
|
140
139
|
self.workbook[self.sheet].data.append(value)
|
|
141
140
|
else:
|
|
142
|
-
|
|
143
|
-
self._row_list.append((value, style))
|
|
141
|
+
self._row_list.extend(value)
|
|
144
142
|
|
|
145
143
|
def create_row(self):
|
|
146
144
|
"""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|