Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tests/attributes_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import typing
import pytest
import torch
from grassmann_tensor import GrassmannTensor
Expand All @@ -16,7 +15,7 @@
((), (), torch.randn([])),
((False, False, True), ((2, 2), (1, 3), (4, 0)), torch.randn([4, 4, 4])),
])
def x(request: typing.Any) -> Initialization:
def x(request: pytest.FixtureRequest) -> Initialization:
return request.param


Expand Down
3 changes: 1 addition & 2 deletions tests/update_mask_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import typing
import pytest
import torch
from grassmann_tensor import GrassmannTensor
Expand All @@ -18,7 +17,7 @@
torch.randn([2, 4, 2], dtype=torch.float32),
),
])
def x(request: typing.Any) -> Initialization:
def x(request: pytest.FixtureRequest) -> Initialization:
return request.param


Expand Down