Skip to content

Commit 23c2cba

Browse files
authored
[tensorflow] Fix literal value for pad function (#13877)
1 parent 318c868 commit 23c2cba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/tensorflow/tensorflow/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ def reshape(tensor: TensorCompatible, shape: ShapeLike | Tensor, name: str | Non
417417
def pad(
418418
tensor: TensorCompatible,
419419
paddings: Tensor | IntArray | Iterable[Iterable[int]],
420-
mode: Literal["CONSTANT", "constant", "REFLECT", "reflect", "SYMMETRIC", "symmectric"] = "CONSTANT",
420+
mode: Literal["CONSTANT", "constant", "REFLECT", "reflect", "SYMMETRIC", "symmetric"] = "CONSTANT",
421421
constant_values: ScalarTensorCompatible = 0,
422422
name: str | None = None,
423423
) -> Tensor: ...

0 commit comments

Comments
 (0)