Skip to content

Commit 51b02aa

Browse files
authored
Merge pull request #38 from ALPHA-g-Experiment/fix_spilllog
Fix trg_scalers sorting in spill_log.py
2 parents ef567d0 + 712aba5 commit 51b02aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/spill_log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
)
124124
)
125125

126-
trg_scalers_df.sort("trg_time")
126+
trg_scalers_df = trg_scalers_df.drop_nulls().sort("trg_time")
127127
trg_spill_log_df = (
128128
windows_df.sort("start_time")
129129
.join_asof(

0 commit comments

Comments
 (0)