Skip to content

Commit 6b274a5

Browse files
generatedunixname1401739305002972meta-codesync[bot]
authored andcommitted
Fix PYRE_MISSING_ANNOTATIONS issues in fbcode/aml/augly/video/transforms.py
Differential Revision: D105148270 fbshipit-source-id: e6f3fb06f93bfd2153b7874c9e6935124e72264d
1 parent 3308b4d commit 6b274a5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

augly/video/transforms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ def __init__(
991991
additional_video_paths: list[str],
992992
src_ids: list[str],
993993
seed: int | None = None,
994-
):
994+
) -> None:
995995
"""
996996
@param background_path: the path of the video in which to insert
997997
the main (and additional) video.
@@ -2704,7 +2704,7 @@ def apply_random_transform(
27042704
class RandomRotation(BaseRandomRangeTransform):
27052705
def __init__(
27062706
self, min_degrees: float = 0.0, max_degrees: float = 180.0, p: float = 1.0
2707-
):
2707+
) -> None:
27082708
"""
27092709
@param min_degrees: the lower value on the range of degree values to choose from
27102710

0 commit comments

Comments
 (0)