仮完成2

This commit is contained in:
野間 2023-06-27 16:50:29 +09:00
parent 6478bd078b
commit be75bf7a9a

View File

@ -221,6 +221,7 @@ def make_csv_data(record_csv: list, resLog_f):
# データ部分書き込み
for record_data in record_csv:
record_value = list(record_data.values())
record_value = ['' if n is None else n for n in record_value]
csv_data = ",".join(map(str, record_value))
fp.write(f'{csv_data}\n')