Skip to content

Commit f51e208

Browse files
lint
1 parent c4a50bb commit f51e208

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_cvcuda.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,15 +175,15 @@ class TestNVCVToTensor:
175175
)
176176
def test_functional_and_transform(self, num_channels, dtype, fn):
177177
input = make_nvcv_image(num_channels=num_channels, dtype=dtype)
178-
178+
179179
# Delay function reference until test execution time
180180
if fn == "functional":
181181
fn_ref = F.nvcv_to_tensor
182182
else: # fn == "transform"
183183
fn_ref = transform_cls_to_functional(
184184
lambda: __import__("torchvision.transforms.v2", fromlist=["NVCVToTensor"]).NVCVToTensor
185185
)
186-
186+
187187
output = fn_ref(input)
188188

189189
assert isinstance(output, torch.Tensor)

0 commit comments

Comments
 (0)