You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# FIXME: error: Incompatible types in assignment (expression has type "ndarray[tuple[Any, ...], dtype[float64]]", variable has type "DataArray") [assignment]
# FIXME: mypy error: Incompatible types in assignment (expression has type "ndarray[tuple[int], dtype[Any]]", target has type "DataArray") [assignment]
378
+
ocoords["wavenumber"] =wave# type: ignore
378
379
elifc=="frequency":
379
-
ocoords["frequency"] =freq
380
+
# FIXME: mypy error: Incompatible types in assignment (expression has type "ndarray[tuple[Any, ...], dtype[float64]]", target has type "DataArray") [assignment]
# FIXME: mypy error: Incompatible types in assignment (expression has type "ndarray[tuple[Any, ...], dtype[Any]]", variable has type "DataArray") [assignment]
343
+
z=np.log10(z) # type: ignore
343
344
344
345
if"spec_background"invar_nameandsubplot_num<2:
345
-
z=np.log10(z)
346
+
# FIXME: mypy error: Incompatible types in assignment (expression has type "ndarray[tuple[Any, ...], dtype[Any]]", variable has type "DataArray") [assignment]
0 commit comments