Skip to content

Commit

Permalink
Attempt to fix indexing for Dask
Browse files Browse the repository at this point in the history
This is a naive attempt to make `isel` work with Dask

Known limitation: it triggers the computation.
  • Loading branch information
bzah committed Oct 18, 2021
1 parent ad2f79e commit b7e4d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/core/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from contextlib import suppress
from datetime import timedelta
from typing import Any, Callable, Iterable, List, Optional, Tuple, Union
import dask.array as da
import dask.array as da

import numpy as np
import pandas as pd
Expand Down

0 comments on commit b7e4d61

Please sign in to comment.