From 6e3f28d9d9b5378c6f3aed45f4c95bfc00e1bdcc Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 23 Apr 2023 11:58:40 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- maths/tanh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maths/tanh.py b/maths/tanh.py index 70306c5ee..93ef6ec46 100644 --- a/maths/tanh.py +++ b/maths/tanh.py @@ -33,5 +33,5 @@ def tanh_func(vector): return (2 / (1 + exp_vector)) - 1 -if __name__ == '__main__': +if __name__ == "__main__": print(tanh_func(np.array([0.23])))