]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - src/dunshire/__init__.py
Clean up a bit of the import mess.
[dunshire.git] / src / dunshire / __init__.py
index b5243b09be37db5e7caaff848ddb7606873c0d04..f754c92fc0acd2cf70ea4bf9aa28f9e9639f1225 100644 (file)
@@ -6,9 +6,9 @@ turn pulls in everything that they would need to use the library.
 """
 
 # Needed to construct the cone over which the game takes place.
-from cones import (NonnegativeOrthant,
-                   IceCream,
-                   SymmetricPSD,
-                   CartesianProduct)
+from .cones import (NonnegativeOrthant,
+                    IceCream,
+                    SymmetricPSD,
+                    CartesianProduct)
 
-from games import SymmetricLinearGame
+from .games import SymmetricLinearGame