Skip to content

Commit 7702df2

Browse files
vincentqbfacebook-github-bot
authored andcommitted
[fbsync] Fixed typo on line 12 (#3537)
Summary: Co-authored-by: Francisco Massa <[email protected]> Reviewed By: fmassa Differential Revision: D27128001 fbshipit-source-id: 504afd9a3ec1a1f18e603f8612223a7705d51293
1 parent 805e717 commit 7702df2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torchvision/transforms/_functional_video.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
def _is_tensor_video_clip(clip):
1111
if not torch.is_tensor(clip):
12-
raise TypeError("clip should be Tesnor. Got %s" % type(clip))
12+
raise TypeError("clip should be Tensor. Got %s" % type(clip))
1313

1414
if not clip.ndimension() == 4:
1515
raise ValueError("clip should be 4D. Got %dD" % clip.dim())

0 commit comments

Comments
 (0)