Skip to content

Commit

Permalink
bug fix in get_alluvial
Browse files Browse the repository at this point in the history
  • Loading branch information
j-i-l committed Feb 20, 2020
1 parent 66e3587 commit e1d39b0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion majortrack/tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -2510,7 +2510,10 @@ def include_cluster(idx, group):
)
prev_idx = idx
self.sp_clusters = {
_clusters_x_pos[idx]: _clusters[idx]
_clusters_x_pos[idx]: [
cluster for cluster in _clusters[idx]
if cluster is not None
]
for idx in range(len(_clusters))
}
self.sp_fluxes = {
Expand Down

0 comments on commit e1d39b0

Please sign in to comment.