From d232b544030f0ba7922a1ba5462b80e7c2ac3f57 Mon Sep 17 00:00:00 2001 From: Xipmix <576337-xipmix@users.noreply.gitlab.com> Date: Wed, 16 Mar 2022 20:29:34 +1100 Subject: missing word --- share/python/template/asserts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'share') diff --git a/share/python/template/asserts.py b/share/python/template/asserts.py index 33609ce..ceab2e2 100644 --- a/share/python/template/asserts.py +++ b/share/python/template/asserts.py @@ -1,9 +1,9 @@ -# Check two values for equality and give error if they are not equal +# Check two values for equality and give an error if they are not equal def assert_eq(a, b): assert a == b, "expected %r == %r" % (a, b) -# Check two values for inequality and give error if they are equal +# Check two values for inequality and give an error if they are equal def assert_ne(a, b): assert a != b, "expected %r != %r" % (a, b) -- cgit v1.2.1