]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - test/symmetric_linear_game_test.py
Fix some pylint warnings.
[dunshire.git] / test / symmetric_linear_game_test.py
index f5b48f4ac1f3e19bcec92d9357a511ebfd794df5..04b85455ac94cb7d76719a7ab8b6a3629a8bc6ef 100644 (file)
@@ -4,14 +4,13 @@ Unit tests for the :class:`SymmetricLinearGame` class.
 
 from unittest import TestCase
 
-from dunshire.cones import NonnegativeOrthant
 from dunshire.games import SymmetricLinearGame
-from dunshire.matrices import eigenvalues_re, inner_product, norm
+from dunshire.matrices import eigenvalues_re, inner_product
 from dunshire import options
-from .randomgen import (RANDOM_MAX, random_icecream_game,
-                        random_ll_icecream_game, random_ll_orthant_game,
-                        random_nn_scaling, random_orthant_game,
-                        random_positive_orthant_game, random_translation)
+from .randomgen import (random_icecream_game, random_ll_icecream_game,
+                        random_ll_orthant_game, random_nn_scaling,
+                        random_orthant_game, random_positive_orthant_game,
+                        random_translation)
 
 
 # Tell pylint to shut up about the large number of methods.