From: Michael Orlitzky Date: Thu, 3 Nov 2016 21:02:51 +0000 (-0400) Subject: Don't pass a sole argument as a keyword. X-Git-Tag: 0.1.0~72 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=77b3212b8b5241561f6bb365417ae5c6b31388c8 Don't pass a sole argument as a keyword. --- 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):