]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - dunshire/games.py
Don't pass a sole argument as a keyword.
[dunshire.git] / dunshire / games.py
index 13c84f88b55824ca1f75630645f732a0e60f74a6..1f3a15a0b261c723f7f5c65d66d255fd2b9fdc99 100644 (file)
@@ -800,7 +800,7 @@ class SymmetricLinearGame:
         except (PoorScalingException, GameUnsolvableException):
             # Ok, that didn't work. Let's try it with the default
             # tolerance, and whatever happens, happens.
-            return self._try_solution(tolerance = options.ABS_TOL)
+            return self._try_solution(options.ABS_TOL)
 
 
     def condition(self):