From: Michael Orlitzky Date: Fri, 23 Aug 2019 23:53:02 +0000 (-0400) Subject: eja: remove some unused imports from eja_utils. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=sage.d.git;a=commitdiff_plain;h=af22a5320eb5a915ff50bc6f90f87195d6cd615d eja: remove some unused imports from eja_utils. --- diff --git a/mjo/eja/eja_utils.py b/mjo/eja/eja_utils.py index 701d5f5..b6b0a03 100644 --- a/mjo/eja/eja_utils.py +++ b/mjo/eja/eja_utils.py @@ -1,6 +1,4 @@ -from sage.matrix.constructor import matrix from sage.modules.free_module_element import vector -from sage.functions.other import sqrt def _mat2vec(m): return vector(m.base_ring(), m.list())