File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 2828from xarray .core .resample import Resample
2929
3030try :
31- from xarray .core .rolling import Coarsen , Rolling
31+ from xarray .core .rolling import ( # type:ignore[import-not-found,no-redef]
32+ Coarsen ,
33+ Rolling ,
34+ )
3235except ImportError :
33- from xarray .computation .rolling import Coarsen , Rolling
36+ from xarray .computation .rolling import ( # type:ignore[import-not-found,no-redef]
37+ Coarsen ,
38+ Rolling ,
39+ )
3440
3541try :
36- from xarray .core .weighted import Weighted
42+ from xarray .core .weighted import Weighted # type:ignore[import-not-found,no-redef]
3743except ImportError :
38- from xarray .computation .weighted import Weighted
44+ from xarray .computation .weighted import (
45+ Weighted , # type:ignore[import-not-found,no-redef]
46+ )
3947
4048
4149from . import parametric , sgrid
You can’t perform that action at this time.
0 commit comments