From: Michael Orlitzky Date: Sun, 29 Jan 2023 20:57:35 +0000 (-0500) Subject: eja: drop a superfluous semicolon. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=sage.d.git;a=commitdiff_plain;h=d00138c6bd4e7082c0ac0c92528a1692226232ac eja: drop a superfluous semicolon. --- 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) )