Unverified Commit d0abd1f3 authored by Nikhil Kumar's avatar Nikhil Kumar Committed by GitHub
Browse files

Fixed typo on line 12 (#3537)


Co-authored-by: default avatarFrancisco Massa <fvsmassa@gmail.com>
parent 331f1268
......@@ -9,7 +9,7 @@ warnings.warn(
def _is_tensor_video_clip(clip):
if not torch.is_tensor(clip):
raise TypeError("clip should be Tesnor. Got %s" % type(clip))
raise TypeError("clip should be Tensor. Got %s" % type(clip))
if not clip.ndimension() == 4:
raise ValueError("clip should be 4D. Got %dD" % clip.dim())
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment