Skip to content

Commit 0eb26f8

Browse files
authored
Merge pull request #21 from deshima-dev/issue20
Issue20
2 parents f340d66 + 346aa02 commit 0eb26f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/aste/flag_KIDs_based_on_FitSweep.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,11 @@ def main_2(sky_or_room):
186186
with open(reftxtlist, 'a') as f:
187187
print( '# below are append due to bad chi2', file=f )
188188
for i in np.unique(bad_list_concat):
189-
print( i, file=f )
189+
print( str(int(i)), file=f )
190190
with open(reftxtlist, 'a') as f:
191191
print( '# below are append due to overlap %s' %del_1st_or_2nd, file=f )
192192
for i in np.unique(bad_list_fr_diff_concat):
193-
print( i, file=f )
193+
print( str(int(i)), file=f )
194194

195195

196196

0 commit comments

Comments
 (0)