mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 14:50:25 +01:00
fix: bug in obs._intersection_idx fixed.
This commit is contained in:
parent
eacc9b19a3
commit
99c98aeb9e
1 changed files with 1 additions and 1 deletions
|
@ -996,7 +996,7 @@ def _intersection_idx(idl):
|
|||
idstep = max([idx.step for idx in idl])
|
||||
return range(idstart, idstop, idstep)
|
||||
|
||||
return sorted(set().intersection(*idl))
|
||||
return sorted(set.intersection(*[set(o) for o in tt]))
|
||||
|
||||
|
||||
def _expand_deltas_for_merge(deltas, idx, shape, new_idx):
|
||||
|
|
Loading…
Add table
Reference in a new issue