From d00138c6bd4e7082c0ac0c92528a1692226232ac Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 29 Jan 2023 15:57:35 -0500 Subject: [PATCH] eja: drop a superfluous semicolon. --- mjo/eja/eja_element.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mjo/eja/eja_element.py b/mjo/eja/eja_element.py index 0983ea0..a832185 100644 --- a/mjo/eja/eja_element.py +++ b/mjo/eja/eja_element.py @@ -1561,7 +1561,7 @@ class FiniteDimensionalEJAElement(IndexedFreeModuleElement): sage: x.trace_inner_product(y) == y.trace_inner_product(x) True sage: # bilinear - sage: a = J.base_ring().random_element(); + sage: a = J.base_ring().random_element() sage: actual = (a*(x+z)).trace_inner_product(y) sage: expected = ( a*x.trace_inner_product(y) + ....: a*z.trace_inner_product(y) ) -- 2.43.2