We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3443f7e commit a88ff04Copy full SHA for a88ff04
test/test_common.py
@@ -13,7 +13,7 @@
13
from xarray import DataArray
14
from xarray.testing.assertions import assert_equal
15
16
-from linopy import Model, Variable
+from linopy import Variable
17
from linopy.common import (
18
align,
19
as_dataarray,
@@ -651,7 +651,7 @@ def test_get_dims_with_index_levels() -> None:
651
assert get_dims_with_index_levels(ds5) == []
652
653
654
-def test_align(m: Model, x: Variable, u: Variable) -> None:
+def test_align(x: Variable, u: Variable) -> None: # noqa: F811
655
alpha = xr.DataArray([1, 2], [[1, 2]])
656
beta = xr.DataArray(
657
[1, 2, 3],
0 commit comments