From 4034721d9d0089c7006f714423f3597a3a5c54ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20M=E1=BA=A1nh=20D=C5=A9ng?= <48562727+manhdung20112000@users.noreply.github.com> Date: Thu, 18 Nov 2021 21:04:32 +0700 Subject: [PATCH] update --- src/operators.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/operators.py b/src/operators.py index 7bf1f4b..6217bc6 100644 --- a/src/operators.py +++ b/src/operators.py @@ -19,7 +19,7 @@ def mul(x, y): Raises: NotImplementedError: Raise when function is not implemented """ - + return x * y raise NotImplementedError('Need to implement for Task 0.1') @@ -34,7 +34,7 @@ def add(x, y): Raises: NotImplementedError: Raise when function is not implemented """ - + return x+y raise NotImplementedError('Need to implement for Task 0.1')