fix: 出力データの形式がおかしくなるため、書式はコピーし、元の書式は文字列ではなく標準にした。
This commit is contained in:
parent
12744406cf
commit
dbc9ac9f6d
Binary file not shown.
@ -2,6 +2,7 @@ import asyncio
|
||||
import functools
|
||||
import os
|
||||
import shutil
|
||||
from copy import copy
|
||||
from datetime import datetime
|
||||
|
||||
import pandas as pd
|
||||
@ -160,7 +161,7 @@ class BioViewService(BaseService):
|
||||
formatted_cell = sheet['A2']
|
||||
for row in sheet[f'A2:AK{data_frame_range + 1}']:
|
||||
for cell in row:
|
||||
cell._style = formatted_cell._style
|
||||
cell._style = copy(formatted_cell._style)
|
||||
|
||||
data_frame_chunk_size = 2000 # 1回あたりの書き出し行数
|
||||
is_first = True # ループの初回
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user