From 77b3212b8b5241561f6bb365417ae5c6b31388c8 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 3 Nov 2016 17:02:51 -0400 Subject: [PATCH] Don't pass a sole argument as a keyword. --- dunshire/games.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dunshire/games.py b/dunshire/games.py index 13c84f8..1f3a15a 100644 --- a/dunshire/games.py +++ b/dunshire/games.py @@ -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): -- 2.43.2