From 86926e8011b1802ed4a51efbef2cce9e07b8fb24 Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Wed, 6 Nov 2013 21:14:11 +0100 Subject: [PATCH] scanner: Remove unused argument for progress helper. --- mopidy/scanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/scanner.py b/mopidy/scanner.py index ee54c04d..30fb553b 100644 --- a/mopidy/scanner.py +++ b/mopidy/scanner.py @@ -122,7 +122,7 @@ class Progress(object): self.total = total self.start = time.time() - def increment(self, force=False): + def increment(self): self.count += 1 if self.count % 1000 == 0 or self.count == self.total: duration = time.time() - self.start