mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-14 19:43:41 +02: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])
|
idstep = max([idx.step for idx in idl])
|
||||||
return range(idstart, idstop, idstep)
|
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):
|
def _expand_deltas_for_merge(deltas, idx, shape, new_idx):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue