Skip to content

Commit 43e1c56

Browse files
committed
Fixed #119
1 parent 73e699e commit 43e1c56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1408,7 +1408,7 @@ def format_data(filepath, datas):
14081408
+ " ".join(["{:=+012.5F}" for spect in datas])
14091409
with open(filepath, "w") as file:
14101410
file.write(begin+"\n")
1411-
for tup in zip(*tup(datas.values())):
1411+
for tup in zip(*tuple(datas.values())):
14121412
file.write(format_str.format(*tup)+"\n")
14131413
file.close()
14141414

0 commit comments

Comments
 (0)