Skip to content

Commit

Permalink
float
Browse files Browse the repository at this point in the history
  • Loading branch information
profxj committed Nov 5, 2024
1 parent 4eb5b66 commit 5cd73ae
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frb/builds/build_hosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,15 +303,13 @@ def run(host_input:pandas.core.series.Series,
# Merge?
if merge_tbl is not None:
for key in sub_tbl.keys():
if key == 'VLT_FORS2_R':
embed(header='307 of build_hosts')
if key == 'Name':
continue
if key in merge_tbl.keys() and not chk_fill(sub_tbl[key].data[0]):
merge_tbl[key] = sub_tbl[key]
else:
if not chk_fill(sub_tbl[key].data[0]):
merge_tbl[key] = sub_tbl[key]
merge_tbl[key] = float(sub_tbl[key])
else:
merge_tbl = sub_tbl
merge_tbl['Name'] = file_root
Expand Down

0 comments on commit 5cd73ae

Please sign in to comment.