]> gitweb.michael.orlitzky.com - dunshire.git/commitdiff
Don't pass a sole argument as a keyword.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 3 Nov 2016 21:02:51 +0000 (17:02 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 3 Nov 2016 21:02:51 +0000 (17:02 -0400)
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):