From 875936191c2f7616c43f425d4c03fb52f96370f1 Mon Sep 17 00:00:00 2001 From: Harsh188 Date: Mon, 31 Aug 2020 10:39:51 +0530 Subject: [PATCH] fixed Build failures pt2 --- tensorflow/python/ops/math_ops.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tensorflow/python/ops/math_ops.py b/tensorflow/python/ops/math_ops.py index 84a72f1438a..e7b9ffd3cdd 100644 --- a/tensorflow/python/ops/math_ops.py +++ b/tensorflow/python/ops/math_ops.py @@ -537,7 +537,7 @@ def subtract(x, y, name=None): *Note*: Subtract supports broadcasting. More about broadcasting [here](https://numpy.org/doc/stable/user/basics.broadcasting.html) - + Both input and output have a range `(-inf, inf)`. For example: @@ -4985,7 +4985,7 @@ def add(x, y, name=None): Returns: A `Tensor`. Has the same type as x. """ - return gen_math_ops.add(x,y,name) + return gen_math_ops.add(x, y, name) @tf_export("math.acos", v1=["math.acos", "acos"]) @@ -5016,7 +5016,7 @@ def acos(x, name=None): Returns: A `Tensor`. Has the same type as x. """ - return gen_math_ops.acos(x,name) + return gen_math_ops.acos(x, name) @tf_export("math.floor", v1=["math.floor", "floor"]) @@ -5042,4 +5042,4 @@ def floor(x, name=None): Returns: A `Tensor`. Has the same type as x. """ - return gen_math_ops.floor(x,name) + return gen_math_ops.floor(x, name)