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 28
28
from xarray .core .resample import Resample
29
29
30
30
try :
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
+ )
32
35
except 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
+ )
34
40
35
41
try :
36
- from xarray .core .weighted import Weighted
42
+ from xarray .core .weighted import Weighted # type:ignore[import-not-found,no-redef]
37
43
except ImportError :
38
- from xarray .computation .weighted import Weighted
44
+ from xarray .computation .weighted import (
45
+ Weighted , # type:ignore[import-not-found,no-redef]
46
+ )
39
47
40
48
41
49
from . import parametric , sgrid
You can’t perform that action at this time.
0 commit comments