From d91793dfc77c9190b3dab801e8bd9a768ed19526 Mon Sep 17 00:00:00 2001 From: Forrest Voight Date: Fri, 19 Oct 2012 13:19:20 -0400 Subject: [PATCH] fixed SkipList.finalize's arguments causing pylint warnings --- p2pool/util/skiplist.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/p2pool/util/skiplist.py b/p2pool/util/skiplist.py index d913128..e9e36c2 100644 --- a/p2pool/util/skiplist.py +++ b/p2pool/util/skiplist.py @@ -55,5 +55,5 @@ class SkipList(object): for x in updates: updates[x] = updates[x][0], self.combine_deltas(updates[x][1], delta) if updates[x][1] is not None else delta - def finalize(self, sol): + def finalize(self, sol, args): return sol -- 1.7.1